我正在尝试从我的表单中插回数据库值。
<?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] =&gt; 3 [answers_91_5] =&gt; 3)
90&amp; 91是问题ID,5是两个实例中的子类别。
从这里我很难过。
如何识别每个帖子的这些部分以及答案,并将它们作为一行插入表格中?
我很好地正常进行MySQL插入和传递值等的标准表单但是我完全不知道如何做到这一点!
非常感谢提前!
答案 0 :(得分:3)
使用多维数组可以简化迭代工作:
<input
type="radio"
name="answers[<?php echo $row_questions['id']; ?>][<?php echo $row_questions['sub_category']; ?>]"
value="1"
id="answers_<?php echo $row_questions['id'] . '_' . $row_questions['sub_category']; ?>" />
调试这个应该会给你$_POST
填充一系列喜欢的内容:
Array ( [answers] => Array(
90 => Array ( 5 => 3 ),
91 => Array ( 5 => 3 ),
))
答案 1 :(得分:0)
确定,将您的查询分开,将post one和sub cat one分别用于查询1,查询2对cat 2和sub cat 2执行相同的操作。
很简单。答案 2 :(得分:0)
我认为提出多暗阵列的另一个答案很有意义。以为我仍然会提供一个如何解析字符串的示例。它可能很简单:
foreach ($post as $k => $v) {
$parts = explode('_', $k);
$questionId = $parts[1];
$questionCategoryId = $parts[2];
$sql = "INSERT INTO answers (questionId, subCategoryId, answerValue ) VALUES ($questionId, $questionCategoryId, $v)";
....
}
...只希望更好地转发POST数据。