我目前正在尝试从我的表单中插入回数据库值。
<?php do { ?>
<tr>
<td><?php echo $row_questions['question']; ?><br /><table><tr><td style=
"padding:15px; text-align:center">
<label>
<center><input type="radio" name="answers_<?php echo $row_questions['id']; ?>_<?php echo $row_questions['sub_category']; ?>" value="1" id="answers_1" /></center><br />
Low</label>
</td><td style="padding:15px; text-align:center">
<label>
<center><input type="radio" name="answers_<?php echo $row_questions['id']; ?>_<?php echo $row_questions['sub_category']; ?>" value="2" id="answers_2" /></center><br />
Fairly Low</label>
</td><td style="padding:15px; text-align:center">
<label>
<center><input type="radio" name="answers_<?php echo $row_questions['id']; ?>_<?php echo $row_questions['sub_category']; ?>" value="3" id="answers_3" /></center><br />
Average</label>
</td><td style="padding:15px; text-align:center">
<label>
<center><input type="radio" name="answers_<?php echo $row_questions['id']; ?>_<?php echo $row_questions['sub_category']; ?>" value="4" id="answers_4" /></center><br />
Fairly High </label>
</td><td style="padding:15px; text-align:center">
<label>
<center><input type="radio" name="answers_<?php echo $row_questions['id']; ?>_<?php echo $row_questions['sub_category']; ?>" value="5" id="answers_5" /></center><br />
High</label>
</td></tr></table><br />
</tr>
<?php } while ($row_questions = mysql_fetch_assoc($questions)); ?>
该表单从我的数据库中的表中获取问题(称为问题)。它们分为三类,并且每次只提取一类问题。
我需要将每个答案单独插入另一个表(称为 user_answers)。
我很难弄清楚如何去做这件事,它开始让我头疼了!
表单设法通过 $_POST 一个值,当print_r($_POST);
我得到
数组([answers_90_5] => 3 [answers_91_5] => 3 )
在这两种情况下,90 和 91 是问题 ID,5 是子类别。
从这里我被难住了。
如何识别每个帖子的这些部分以及答案并将它们作为一行插入表格中?
我可以正常执行 MySQL 插入和标准表单传递值等,但我完全不知道如何做到这一点!
提前谢谢了!