|
|
|
ทำไม Insert แล้วข้อมูลไม่ยอมบันทึกลง mysql รบกวนช่วยดูหน่อยครับ |
|
|
|
|
|
|
|
ทำไม Insert แล้วข้อมูลไม่ยอมบันทึกลง mysql รบกวนช่วยดูหน่อยครับ
Code (PHP)
<?
session_start();
include "include/connect.php";
$user_id = $_SESSION['uid_idx'];
$user_code = $_SESSION['user_code'];
$strSQL="select * from user inner join user_position on user_position_id = ref_user_position_id where user_id = '$user_id' and active = 'Y'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$rs=mysql_fetch_array($objQuery);
$user_name = $rs["user_name"];
$user_lname = $rs["user_lname"];
$user_position_name = $rs["user_position_name"];
$user_class = $_SESSION['user_class'];
?><strong></strong>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DITTO GAMEt</title>
</head>
<h1>DITTO GAME</h1><br>
<?
$today=date("d-m-Y");
$time=date("h-i-s");
$score=0;
print "<b>คุณ</b> $user_code $user_name $user_lname<br>";
print "คำตอบแบบทดสอบสัปดาร์ที่ 1 <br>";
print "ในวันที่ $today เวลา $time คือ<p>";
print "<b>ข้อ1</b>. $test1<br>";
if ($test1=="monitor") {print"ถูกต้อง<img src=t.jpg><p> "
; $score++;} else {print"ไม่ถูกต้อง <img src=f.png><p>";}
print "<b>ข้อ2</b>. $test2<br>";
if ($test2=="keyboard") {print"ถูกต้อง<img src=t.jpg><p>";
$score++;} else {print"ไม่ถูกต้อง <img src=f.png><p>";}
print "<br> <img src=score.jpg><br>ได้คะแนนเท่ากับ : $score <p>";
//การบันทึกระบบฐานข้อมูล MySQL
//ติดต่อโปรแกรมฐานข้อมูล MySQL
$link=mysql_connect("localhost","root","Abc@1234");
if (!$link)
{
print("ERROR");
}
else
{
//ติดต่อฐานข้อมูล MySQL ชื่อ test
mysql_select_db("dbhelpCrm",$link);
//เปิด ตารางชื่อ testcom และ เขตข้อมูล ชื่อ name,class,school,today,time,score
$sql="insert into dittogame (UserName,today,time,score1)
values ('$user_code','$today','$time','$score')";
//เพิ่มข้อมูลลง Database
$res = mysql_query( $sql , $link );
if ($res==1)
print("Adding to table OK.");
else
print("Error Adding to table. ");
}
//เปิดดูข้อมูล
//print "<br><a href=show1.php>เปิดดูข้อมูล</a>";
?>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2016-06-13 16:33:31 |
By :
karurub |
View :
1167 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|