I have a table like this:

<table>
<?php foreach($var as $val): ?>
<tr>
<?php foreach($val as $row): ?>
<td> ... </td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</table>

How can I code this with mustache?

有帮助吗?

解决方案

Assuming you're using the KOstache module, Kostache::factory() and assigning your multidimensional array in your controller. Then using an Implicit iterator to loop through all elements.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top