Answer the question
In order to leave comments, you need to log in
How to make a form inside a table without creating multiple tables?
How to make the following thought cross-browser:
<table>
{foreach items as item}
<form>
<tr>...content...</tr>
<input name="id" value="{item.id}"
</form>
{endforeach}
</table>
Answer the question
In order to leave comments, you need to log in
<table>
<form>
{foreach items as item}
<tr>...content...</tr>
<input name="id" value="{item.id}"
{endforeach}
</table>
</form>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question