我有这个表格:
<tbody>
<tr>
<th>ID</th>
<th>Name</th>
<th>Birthdate</th>
<th><input type="text" autofocus="autofocus" name="textinput1"/></th>
<th><input type="checkbox" name="checkinput[]" value="1"/></th>
</tr>
<tr>
<th>ID</th>
<th>Name</th>
<th>Birthdate</th>
<th><input type="text" autofocus="autofocus" name="textinput2"/></th>
<th><input type="checkbox" name="checkinput[]" value="1"/></th>
</tr>
(...and so on...)
</tbody>
当我点击提交按钮时,有没有办法发布数据是数组类型,每个索引都有复选框值和文本输入?这样我只需要迭代数组并为表单中的每一行检查数据库中的相应行并更新它。