Re: [SMARTY] section sum of numbers...
"messju mohr" <[email protected]>
| Newsgroups | gmane.comp.php.smarty.general |
|---|---|
| Message-ID | <20050720192102.GG16088@dune> |
On Wed, Jul 20, 2005 at 01:54:15PM -0500, Andras Kende wrote:
>
> Hello,
>
> Is there a way to find out the SUM of the numbers from the template ?
it's possible to do this with {assign} and {math}, but it's
recommended to do this kind of logic from php and just assign the
result.
>
> -------------
>
> {section name=i loop=$items}
> Â <tr>
> Â Â Â <td>{$items[i].name}</td>
> Â Â Â <td>{$items[i].price}</td>
> Â </tr>
> {/section}
>
> There items: {$smarty.section.i.total}
> Total price: {$smarty ??? }
>
> -------------
>
> <tr>
> <td>Joe</td>
> <td>2.00</td>
> </tr>
> <tr>
> <td>Steve</td>
> <td>5.00</td>
> </tr>
>
> There items: 2
> Total price: 7.00
>
> -------------
>
> Thanks,
>
> Andras Kende
> http://www.kende.com/
>
> --
> Smarty General Mailing List (http://smarty.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
--
Smarty General Mailing List (http://smarty.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php