Hi,
Here's an example:
So I wanted to modify/assign numdueinvoices, I'd use the following:Code:_tpl_vars: Array ( [clientsstats] => Array ( [numpaidinvoices] => 0 [paidinvoicesamount] => $0.00 USD [numdueinvoices] => 0
$smarty->assign('clientsstats', array('numdueinvoices' => 123456));
Issue with the above is that it will kill the other items of the array. I'd like to know how to modify a single item of said array without destroying the other items. Any ideas truly welcomed.

Reply With Quote