私はこのフォームを持っています:
<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>
送信ボタンをクリックすると、投稿データが配列タイプになり、各インデックスにチェックボックス値とテキスト入力がある方法はありますか?このように、私は配列を反復するだけでよく、フォームの各行について、データベースのそれぞれの行をチェックして更新します。