質問のテキストと回答を別のテーブルに保存しようとしています。まず、私は質問のテキスト値を保存することができますが、私は答えのために値を挿入すると、その後、それは異なる行の1つの列に複数の値を挿入するにはどうすればよいですか?
Fatal error: Uncaught exception 'PDOException' with message
'SQLSTATE[21S01]: Insert value list does not match column list: 1136 Column count doesn't match value count at row 1'
を表示私の目標は、オプションのテーブルに質問表と解答の質問のテキストを格納することです。私はいくつかの方法を試しましたが、それでも動作させることはできません。それらのコメント行は私の方法のいくつかです。
HTMLコード:
<div class="container">
<button type="button" class="btn btn-success" onclick="goBack()">
<span class="glyphicon glyphicon-arrow-left"></span> Back
</button><br><br>
<p></p>
<form class="table" method="post" id="mcq-form">
<table class="table">
<tbody>
<tr>
<td>Question:</td>
<td><input type="text" size="80" name="questiontext"></td>
</tr>
<tr>
<td>1. </td>
<td><input type="text" size="70" name="ans1"><input value="1" name="ans" type="radio"></td>
</tr>
<tr>
<td>2. </td>
<td><input type="text" size="70" name="ans2"><input value="2" name="ans" type="radio"></td>
</tr>
<tr>
<td>3. </td>
<td><input type="text" size="70" name="ans3"><input value="3" name="ans" type="radio"></td>
</tr>
<tr>
<td>4. </td>
<td><input type="text" size="70" name="ans4"><input value="4" name="ans" type="radio"></td>
</tr>
<tr>
<td align="center"><input type="submit" name="submit" value="Create"></td>
</tr>
</tbody>
</table></form>
</div>
PHPコード:すべての
<?php
require_once 'dbConn.php';
if(!empty($_POST{'submit'})) {
//$questiontext = $_POST['questiontext'];
$anstext1 = $_POST['ans1'];
$anstext2 = $_POST['ans2'];
$anstext3 = $_POST['ans3'];
$anstext4 = $_POST['ans4'];
//$radiobtn = $_POST['ans'];
//add the first record into question table
/*$stmt1 = $conn->prepare("INSERT INTO `question`(question_text) VALUES(:questiontext)");
$stmt1->bindParam(":questiontext",$questiontext);
$stmt1->execute();*/
//$answerArray = array["$anstext1", "$anstext2", "$anstext3", "$anstext4"];
/*$value = array(':ans1', 'ans2', ':ans3', 'ans4');
for($i=0; $i<=count($value); $i++) {
$i = $value[$i];
}*/
$stmt2 = $conn->prepare("INSERT INTO `option_tbl`(option_answer) VALUES(':ans1', ':ans2', 'ans3', 'ans4')");
$stmt2->bindParam(":ans1",$anstext1);
$stmt2->bindParam(":ans2",$anstext2);
$stmt2->bindParam(":ans3",$anstext3);
$stmt2->bindParam(":ans4",$anstext4);
$stmt2->execute();
//$stmt2->execute();
/*$conn->beginTransaction();
//insert first query to question table
$questionsql = ("INSERT INTO `question`(question_text) VALUES(:questiontext)");
$q = $conn->prepare($questionsql);
$q->bindValue(":questiontext",$questiontext);
$q->execute();
//insert second query to option table
$answersql = ("INSERT INTO `option_tbl`(option_answer) VALUES(:ans1, :ans2, :ans3,:ans4)") ;
$a = $conn->prepare($answersql);
$a->bindValue("anstext1",$anstext1);
$a->bindValue("anstext2",$anstext2);
$a->bindValue("anstext3",$anstext3);
$a->bindValue("anstext4",$anstext4);
$a->execute();
$conn->commit();*/
}
?>
)...あなたはあなたの必要性に応じてそれを自分で編集することができますと仮定すると? – jwalkerman
option_answer列にこの ":ans"を8回印刷しました。私はここで何が間違っているのだろうか。 – jwalkerman
[:ans]から引用符を削除して動作します。 – jwalkerman