|
|
|
ช่วยดู Code ให้หน่อยครับพี่ๆ คือข้อมูลไม่ลง DB ครับ echo แล้ว ข้อมูลมาหมดครับแต่พอจะเอาข้อมูลลง DB มันไม่ลงครับผม |
|
|
|
|
|
|
|
Code (PHP)
$strfname = trim($_POST["fname"]);
$strlname = trim($_POST["lname"]);
$stridcards = trim($_POST["idcards"]);
$stremail = trim($_POST["email"]);
$strusername = trim($_POST["username"]);
$strpassword = trim($_POST["password1"]);
$straddress = trim($_POST["address"]);
$strtelephone = trim($_POST["telephone"]);
/*echo "$strfname"."$strlname"."$stridcards"."$stremail"."$strusername"."$strpassword"."$straddress"."$strtelephone";*/
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("website");
mysql_query("SET NAMES TIS-620");
$strSQL = "INSERT INTO customers (idcards,usersname,password,fname,lname,address,telephone,email) VALUES ('".$stridcards."','".$strusername."','".$strpassword."','".$strfname."','".$strlname."','".$straddress."','".$strtelephone."','".$stremail."')";//คิดว่าผิดพลาดส่วนนี้ครับ แต่ไม่รู้ว่าตรงไหน T^T...
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "<script>alert('การสมัครสมาชิกเสร็จสิ้นครับ'); window.location='index.php'</script>";
}
else
{
echo "<script>alert('สมัครสมาชิกไม่สำเร็จครับ'); window.location='register_form.php'</script>";
}
คือข้อมูลไม่ลง DB ครับ echo แล้ว ข้อมูลมาหมดครับแต่พอจะเอาข้อมูลลง DB มันไม่ลงครับผม ผมเช็คหลายรอบแหละครับไม่รู้จริงๆว่ามันติดตรงไหน Error ไม่มีครับ
T^T...ช่วยผม้วยครับพี่ๆ
Tag : - - - -
|
|
|
|
|
|
Date :
2009-12-08 17:35:23 |
By :
popnakub |
View :
925 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยนบรรทัดนี้เป้นแบบ นี้ ดูครับ จะได้ทราบว่า error อะไร
$objQuery = mysql_query($strSQL) or die(mysql_error()."\n".$strSQL);
|
|
|
|
|
Date :
2009-12-08 17:38:46 |
By :
DownsTream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันขึ้นแบบนี้ อ่าครับ พี่
Duplicate entry '1' for key 1 INSERT INTO customers (idcards,usersname,password,fname,lname,address,telephone,email) VALUES ('1','1','1','1','1','1','1','1')
มันคืออะไรเหรอครับผม
|
|
|
|
|
Date :
2009-12-08 18:22:22 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
idcards ซ้ำกันหรือเปล่าครับ เพราะถ้าเรามี Prmary Key มันห้ามซ้ำกันนะครับ
|
|
|
|
|
Date :
2009-12-08 18:28:44 |
By :
martman26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับผม พอดี PK ซ้ำกันครับ ขอบคุณพี่ๆมากนะครับที่แนะนำผม^^
|
|
|
|
|
Date :
2009-12-08 18:31:31 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แนะนำอีกนิดครับ
หลัง คำสั่ง mysql_query ควรใส่แบบนี้ไว้ครับเพื่อเวลา error จะได้ทราบว่ามันเป็นเพราะอะไร
|
|
|
|
|
Date :
2009-12-08 18:34:24 |
By :
DownsTream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|