|
|
|
INSERT ข้อมูลไม่ลงฐานข้อมูลค่ะ รบกวนช่วยแนะนำหน่อยค่ะ ไม่แน่ใจว่าผิดตรงไหน |
|
|
|
|
|
|
|
Code (PHP)
<?php
$Act= isset($_GET['Act']);
switch($Act){
case 'Add' : $Cours=explode("#", isset($_POST['txtcourse']));
$Question=isset($_POST['txtQuestion']);
$Answer=isset($_POST['txtAnswer']);
$AnswerTrue=isset($_POST['txtAnswerTrue']);
$insertQuestion = "INSERT INTO question(Course,Question,AnswerTrue,subject_id,ArticleID) VALUES ('.$Cours[0].','.$Question.','.$AnswerTrue.','.$Cours[1].','.$Cours[1].')";
$resultQue = mysqli_query($conn,$insertQuestion);
/** $insertQuestion=insert("question","Course,Question,AnswerTrue,subject_id,ArticleID","'".$Cours
[0]."','".$Question."','".$AnswerTrue."','".$Cours[1]."','".$Cours[1]."'"); **/
if($resultQue)
{
$QuestionID = mysql_insert_id();
for($i=0;$i<4;$i++)
{
$insertAnswer = "INSERT INTO answer (QuestionID,Answer) VALUES ('$QuestionID','.$Answer[$i].')";
/** $insertAnswer=insert("answer","QuestionID,Answer","'".$QuestionID."','".$Answer[$i]."'"); **/
}
echo "<script>";
echo "alert('ระบบทำการเพิ่มคำถาม $Question เรียบร้อย');";
echo "window.location='detail_question.php';";
echo "</script>";
}
break;
}
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2018-06-03 16:17:31 |
By :
witsarut_bell |
View :
595 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$resultQue = mysqli_query($conn,$insertQuestion);
ตัวแปรสีแดง เอามาจากไหน
|
|
|
|
|
Date :
2018-06-03 17:59:50 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เข้าตั้งแต่ กระบวนการไหนครับ คำถาม หรือคำตอบ หรือทั้งสอง
$insertAnswer = "INSERT INTO answer (QuestionID,Answer) VALUES ('$QuestionID','.$Answer[$i].')"; mysqli_query($conn,$insertAnswer);
ปล. จะครับหรือค่ะ ก็เลือกเอาสักอันนะครับ 5555
|
ประวัติการแก้ไข 2018-06-04 11:05:58
|
|
|
|
Date :
2018-06-04 11:04:38 |
By :
Pong Thep |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$resultQue = mysqli_query($conn,$insertQuestion) or die($conn->error . '<br>'. $insertQuestion);
เพิ่มคำสั่งเพื่อไว้ตรวจสอบถ้ามัน error
|
|
|
|
|
Date :
2018-06-04 13:02:24 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|