我正在尝试在我的模板文件中加上并乘以三个值,但聪明的是在弄乱我
{assign var="x" value="`$smarty.get.pageID * $perPage`"}
{$x + $smarty.section.co.index_next}
我该怎么做?!
答案 0 :(得分:1)
{if $smarty.get.pageID ne 1 }
{assign var="x" value=$smarty.get.pageID}
{math equation="(( x * y ) + z )" x=$x y=$perPage z=$smarty.section.co.index_next}
{else}
{$smarty.section.co.index_next}
{/if}