如何使用每个文本框值发布选中的复选框

时间:2013-05-22 07:07:50

标签: php html

enter image description here

我希望将每个选中复选框的帖子文本框值插入数据库。

<input type="checkbox" name="email[]" value="<?php echo $actions_to_be[$z]['student_email'] ?>"  />
<input type="text" name="timetable_id[]" value="<?php echo $actions_to_be[$z]['timetable_id'] ?>" size="10px"/>
<input type="text" name="sid[]" value="<?php echo $actions_to_be[$z]['sid'] ?>" size="10px" />

1 个答案:

答案 0 :(得分:0)

<input type="checkbox" name="email[]" value="<?php echo $i; ?>"  />
<input type="text" name="timetable_id[<?php echo $i; ?>]" value="<?php echo $actions_to_be[$z]['timetable_id'] ?>" size="10px"/>
<input type="text" name="sid[<?php echo $i; ?>]" value="<?php echo $actions_to_be[$z]['sid'] ?>" size="10px" />
每个盒子当然应该增加

$i。然后,您可以简单地从$_POST['email']数组中取出ID(可能会将其重命名为更有意义的内容)并检索$_POST['timetable_id'][$id]$_POST['sid'][$id]中的值。