我在这里有一个 jsfiddle:http: //jsfiddle.net/ybZvv/58/
请按照小提琴中的步骤操作:
1:打开小提琴时,单击“添加问题”按钮两次,这将追加 2 行。
2:在第一行选择答案按钮“A”和“C”,在第二行选择答案按钮“A”、“B”和“E”。选择的每个答案按钮的文本输入值显示在下方。
现在我要做的是将问题编号和答案值发布到数据库中。
发布时数据库应如下所示:
问题表:
QuestionId (Question Number)
1
2
答案表:
AnswerId (auto) QuestionId Answer
1 1 A
2 1 C
3 2 A
4 2 B
5 2 E
我的问题是,如何在下面的 mysqli 代码中发布答案和正确的问题编号,以便在“问题”和“答案”表中插入这些答案和问题编号?
下面我设置了 mysqli/php 代码,但它需要重新调整,以便它可以正确插入答案和相关的问题编号。
$i = 0;
$c = count($_POST['numQuestion']); //count number of rows
for($i = 0; $i < $c; $i++ ){
$questionsql = "INSERT INTO Question (QuestionId)
VALUES (?)";
if (!$insert = $mysqli->prepare($questionsql)) {
// Handle errors with prepare operation here
}
$insert->bind_param("i", $_POST['numQuestion'][$i]);
$insert->execute();
if ($insert->errno) {
// Handle query error here
}
$insert->close();
$lastID = $mysqli->insert_id;
$answersql = "INSERT INTO Answer (QuestionId, Answer)
VALUES (?, ?, ?)";
if (!$insertanswer = $mysqli->prepare($answersql)) {
// Handle errors with prepare operation here
}
$insertanswer->bind_param("is", $lastID, $_POST['value'][$i]);
$insertanswer->execute();
if ($insertanswer->errno) {
// Handle query error here
}
$insertanswer->close();
}
我为上述场景做了一个 var_dump($_POST) ,这就是它的输出:
array(2) {
["numQuestion"]=> array(2) {
[0]=> string(1) "1"
[1]=> string(1) "2"
}
["submitDetails"]=> string(14) "Submit Details"
["value"]=> array(4) {
["answerARow"]=> string(1) "A"
["answerCRow"]=> string(1) "C"
["answerBRow"]=> string(1) "B"
["answerERow"]=> string(1) "E"
}
}
我收到 2 个相同的错误:
警告:mysqli_stmt::execute(): (23000/1048):第 257 行 /.../ 中的“答案”列不能为空警告:mysqli_stmt::execute():(23000/1048):“答案”列在第 257 行的 /.../ 中不能为空
更新:
我已经更新了 fiddle 以包含多维数组,对不起,我忘了把它放进去,但代码行如下:
var $newBtn = $(("<input class='answerBtnsRow answers' type='button' style='display:%s;' onclick='btnclick(this, " + gQuestionIndex + ");' />").replace('%s',$this.is(':visible')?'inline-block':'none')).attr('name', "value[" + gQuestionIndex + "][]").attr('value', $this.val()).attr('class', $this.attr('class')).attr('id', $this.attr('id')+'Row');
我的建议是使用这种格式的多维数组:value[n][],其中 n 是问题编号。使用此新设置,您应该最终得到以下输入字段:
<input type="hidden" value="A" name="value[1][]">
<input type="hidden" value="B" name="value[1][]">
<input type="hidden" value="A" name="value[2][]">
<input type="hidden" value="C" name="value[2][]">
<input type="hidden" value="E" name="value[2][]">
请注意,所选值在 value 属性中编码。name 属性只包含该值所属的问题。