I have to create specific table in PHPTAL. I have array like that:
$tab = array( item1 , item2 , item3 , item4 );
最后表格应当看上去:
<table>
<tr>
<td>Item1</td>
<td>Item2</td>
</tr>
<tr>
<td>Item3</td>
<td>Item4</td>
</tr>
</table>
因此,我正在尝试使用tal:condition width “repeat/item/odd”和“repeat/item/even”来安装和提炼;tr > tag in right place,但我不想工作。
你们是否有任何想法?