我有一个动态的表单,用户可以添加更多行来插入不同的小时,我想知道哪些是将这些数据添加到MySQL数据库的最佳方法。
<input style="margin-left:28px;" type="image" class="add_field_button" src="img/add.png" />
<table id="dataTable" width="900" style="margin-left:25px; margin-top:10px;">
<tr style="text-align:center;">
<td width="70">From</td>
<td>To</td>
<td>Duration Hours</td>
<td>Code</td>
<td>Remark</td>
</tr>
<tr style="height:85px; text-align:center;">
<td><input type="text" name="hours1[]" id="hours1" /></td>
<td><input type="text" name="hours2[]" id="hours2" /></td>
<td><input type="text" name="durationh[]" id="durationh" /></td>
<td><input type="text" name="hrscode[]" id="hrscode" /></td>
<td><textarea name="remark[]" id="remark"></textarea></td>
</tr>
</table>
输入是可扩展的,因此我不知道他们将在mysql
中保存多少行。
答案 0 :(得分:0)
您可以使用foreach()
,使用键将输入分组绑定在一起
foreach($_POST['hours1'] as $key => $value) { // could use any of the fields in $_POST['hours1']
//$_POST['hours1'][$key];
//$_POST['hours2'][$key];
//$_POST['durationh'][$key];
//$_POST['hrscode'][$key];
//$_POST['remark'][$key];
//INSERT INTO table (columns) VALUES (your $_POST values)
}