求php数组在Smarty模版页循环显示问题
$row2=explode('______',$conne->getRowsArray($sql));
$smarty->assign(array("array3"=>$row,"array4"=>$row2));
在此定义了数组
{%foreach item=i from=$array3%}
{%foreach item=j from=$array4%}//这里开始循环array,在这样里怎么才可以循环出数组的内容。
{%if $i!="guid"%}
<tr bgcolor="#EAEFFC">
<td height="22" align="center">{%$i|replace:"__":" "%}</td>
<td height="22" align="left">
<input name="{%$i%}" type="text" id="{%$i%}" value="{%$j[0]%}" style="width:200px;" ><font color="#FCB4A5">(中文)</font> <input name="{%$i%}2" type="text" id="{%$i%}2" style="width:200px;" ><font color="#FCB4A5">(ENGLISH)</font>
</td>
</tr>
{%/if%}
{%/foreach%}
{%/foreach%}
[解决办法]