|
|
|
ถามเรื่องการ Insert data ผิดพลาดตรงไหนช่วยหน่อยครับ |
|
|
|
|
|
|
|
ตารางชื่อ pretest
ไฟล์ add_pretest.php
Code (PHP)
<?php
session_start();
include("../config.php");
?>
<html>
<head>
<meta charset="UTF-8">
<title>Local History Southern Thailand </title>
<link rel="stylesheet" href="../css/pretest.css">
</head>
<body>
<div class="box">
<h1 class="h1">เพิ่มแบบทดสอบก่อนเรียน</h1>
<script language="javascript">
function checkvalue()
{
if (document.f_pre.question.value == ""){
alert('กรุณากรอกโจทย์');
document.f_pre.question.focus();
return false;
}
else if(document.f_pre.choice1.value=="") {
alert("กรุณากรอกตัวเลือกที่1") ;
document.f_pre.choice1.focus() ;
return false ;
}
else if(document.f_pre.choice2.value=="") {
alert("กรุณากรอกตัวเลือกที่2") ;
document.f_pre.choice2.focus() ;
return false ;
}
else if(document.f_pre.choice3.value=="") {
alert("กรุณากรอกตัวเลือกที่3") ;
document.f_pre.choice3.focus() ;
return false ;
}
else if(document.f_pre.choice4.value=="") {
alert("กรุณากรอกตัวเลือกที่4") ;
document.f_pre.choice4.focus() ;
return false ;
}
else if(document.f_pre.pre_answer.value=="") {
alert("กรุณากรอกคำตอบ") ;
document.f_pre.pre_answer.focus() ;
return false ;
}
else return true;
}
</script>
<form action="check_pretest.php" method="post" name="f_pre" onsubmit="javascript:return checkvalue();" >
<table width=400 class="table">
<tr>
<th width="100">ระดับ</th>
<td width="300">
<select name="degree">
<?php
$sql="SELECT * FROM degree order by dg_id ASC";
$result = mysqli_query($con,$sql);
while($row = mysqli_fetch_array($result)){
?>
<option value="
<?php echo $row['dg_id'] ?>"> <?php echo $row['dg_name'] ?>
</option>
<?php } ?>
</select>
</td>
</tr>
<tr>
<th width="100">บทเรียน</th>
<td width="300">
<select name="chapter">
<?php
$sql2 ="SELECT * FROM chapter order by ct_id ASC";
$result2 = mysqli_query($con,$sql2);
while($row2 = mysqli_fetch_array($result2)){
?>
<option value="
<?php echo $row2['ct_id']?>"> <?php echo $row2['ct_name'] ?>
</option>
<?php } ?>
</select>
</td>
</tr>
<tr>
<th width="100">โจทย์</th>
<td width="300"> <textarea name="question" cols="40" rows="4"></textarea></td>
</tr>
<tr>
<th width="100">ตัวเลือกที่ 1</th>
<td width="300"><input type=text name=choice1></td>
</tr>
<tr>
<th width="100">ตัวเลือกที่ 2</th>
<td width="300"><input type=text name=choice2></td>
</tr>
<tr>
<th width="100">ตัวเลือกที่ 3</th>
<td width="300"><input type=text name=choice3></td>
</tr>
<tr>
<th width="100">ตัวเลือกที่ 4</th>
<td width="300"><input type=text name=choice4></td>
</tr>
<tr>
<th width="100">คำตอบ</th>
<td width="300"><input type=text name=pre_answer></td>
</tr>
</table><br>
<a href="../teacher/index_teacher.php"><input type="button" name="back" value="BACK" class="button"></a>
<input type="submit" name="submit" value="ADD" class="button">
</form>
</div>
</body>
</html>
ไฟล์ check_pretest.php
Code (PHP)
<?php
include("../config.php");
$pre_degree = $_POST['degree'];
$pre_chapter = $_POST['chapter'];
$pre_question = $_POST['question'];
$pre_choice1 = $_POST['choice1'];
$pre_choice2 = $_POST['choice2'];
$pre_choice3 = $_POST['choice3'];
$pre_choice4 = $_POST['choice4'];
$pre_answer = $_POST['pre_answer'];
$sql = "INSERT INTO pretest (pre_question, pre_choice1, pre_choice2, pre_choice3, pre_choice4, pre_answer, ct_id, dg_id) VALUES ('$pre_question','$pre_choice1','$pre_choice2','$pre_choice3','$pre_choice4','$pre_answer','$pre_chapter','$pre_degree')";
$query = mysqli_query($con,$sql);
if($query) {
echo "<script type='text/javascript'>alert('บันทึกข้อมูลเรียบร้อยแล้ว')</script>";
echo "<meta http-equiv ='refresh'content='0;URL=add_pretest.php'>";
}else{
echo "<script type='text/javascript'>alert('เกิดข้อผิดพลาดในการบันทึกข้อมูล');window.history.go(-1);</script>" ;
}
?>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2018-03-19 00:56:07 2018-03-19 09:14:18
|
|
|
|
|
Date :
2018-03-19 00:54:09 |
By :
tonmio852 |
View :
565 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันขึ้น error อะไรมาหรือเปล่า บันทัด 19-21 เปิดใช้ซะด้วย แล้วเพิ่ม $sql เข้าไปใน alert ด้วย
ปล. อ่านตัวอย่างการเขียนโค๊ดที่นี่ https://www.thaicreate.com/php/forum/130594.html
|
ประวัติการแก้ไข 2018-03-19 06:26:43
|
|
|
|
Date :
2018-03-19 06:26:00 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มีแจ้ง error.ไรเลยครับ ที่ผมดูผมก็ว่าถูก แต่ทำไม insert ไม่ได้ ช่วยตรวจให้อีกครั้งหน่อยครับ
|
|
|
|
|
Date :
2018-03-19 09:16:23 |
By :
tonmio852 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
check error connect ยังครับ ทุกๆการ query ใส่ or die ไว้ก่อน
|
|
|
|
|
Date :
2018-03-19 09:33:02 |
By :
dudesaranyu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|