我试图根据数据库值进行计算。基本上,我是按照我的代码显示一些数据 tpl
文件
<table cellpadding="2" cellspacing="0">
{foreach from=$data item=item key=key}
<tr>
<td>{$item.Country}</td> <td>{$item.count}</td> <td>{$item.sum}</td>
<tr>
{/foreach}
</table>
现在我需要根据 {$item.count}
以及 {$item.sum}
通过搜索我在下面找到了 smarty math calculation formula
```
{* $height=4, $width=5 *}
{math equation="x + y" x=$height y=$width}
但是不能分配我的数据库变量。我该怎么做
1条答案
按热度按时间q5iwbnjs1#
你可以做基本的数学没有数学函数。