在.php中
while ($line = mysql_fetch_assoc($result)){
$value[] = $line;
$value['newvalue'] ='223457';
}
$smarty->assign('view', $value);
在.tpl
中 {section name=i loop=$view}
{$view[i].newvalue}
{/section}
在smarty
中没有newvalue.im新手的输出答案 0 :(得分:1)
你有点亲近,也许......不管怎样,这就是你想要的。确保缩进代码,以便人们可以阅读。
$c=0;
while ($line = mysql_fetch_assoc($result)){
$value[$c] = $line;
$value[$c]['newvalue'] ='223457';
$c++;
}
$smarty->assign('view', $value);
在.tpl:
{foreach item=v from $view}
{$v.newvalue}
{/foreach}