|
|
|
insert ข้อมูล เข้า database ไม่ได้ เกี่ยวกับการย้ายฐาน ข้อมูลเข้า server ตัวใหม่ไหมคะ |
|
|
|
|
|
|
|
Code (PHP)
mysql_query("INSERT INTO `order1` ( `car_id` , `start_date` , `stop_date` , `start_time` , `stop_time` , `location` , `order_date` , `order_name` , `mem_name` , `order_tel` ,chkrepeat)
VALUES (
'$carid' , '$startdate' , 'nodate', '$starttime' , '$stoptime' ,'$location' ,'$orderdate', '$ordername' , '$memname' , '$ordertel','$chkrepeat' )");
$orderid = mysql_insert_id() ;
echo "จอง " .$name[0] . " เรียบร้อยแล้ว <br>" ;
ข้างบนเป็นโคด insert ค่ะ
พอ insert เสร็จ ก็จะขึ้นว่า จอง....เรียบร้อยแล้ว แต่พอกลับไปดูในฐานข้อมูล มันไม่เข้าค่ะ
ตอนอยู่บน server เก่า ก็ไม่มีปัญหาอะไร
แต่พอย้าย server มันก็ insert ข้อมูลไม่ได้
เกิดจากอะไรได้บ้างค่ะ
ขอบคุณค่ะ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2014-10-13 11:57:05 |
By :
shushu |
View :
864 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องลอง debug โปรแกรมดูครับ ได้ผลยังไง เอามาดูอีกทีครับ
Code (PHP)
$sqlObj = mysql_query("INSERT INTO `order1` ( `car_id` , `start_date` , `stop_date` , `start_time` , `stop_time` , `location` , `order_date` , `order_name` , `mem_name` , `order_tel` ,chkrepeat)
VALUES (
'$carid' , '$startdate' , 'nodate', '$starttime' , '$stoptime' ,'$location' ,'$orderdate', '$ordername' , '$memname' , '$ordertel','$chkrepeat' )") or die(mysql_error());
$orderid = mysql_insert_id() ;
if($sqlObj){
echo "จอง " .$name[0] . " เรียบร้อยแล้ว <br>" ;
} else {
echo "เกิดข้อผิดพลาดในการจอง <br> คือ ".$sqlObj ;
}
|
|
|
|
|
Date :
2014-10-13 12:10:58 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องดูว่ามันแจ้ง Error! ว่าอะไรมันมีคำใบ้อยู่ใน Error! นั้น ๆ แล
|
|
|
|
|
Date :
2014-10-13 12:37:55 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณทุกท่านค่ะ เดี๋ยวจะลอง test ดูค่ะ
|
|
|
|
|
Date :
2014-10-13 13:23:41 |
By :
shushu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พวก shot tag <? ให้เปลี่ยนเป็น <?php ให้หมดครับ
แต่ถ้า copy Error มาวาง ก็จะรู้คำตอบเลยล่ะ
|
|
|
|
|
Date :
2014-10-13 13:34:04 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|