ติด Error ค่ะ You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'order VALUES (0, 20, 4, หญ้าอัลฟัลฟ่า, 500, 1)' at line 1
$sql = "SELECT * FROM cart
WHERE sess_id = '$sid';";
$sql = "SELECT * FROM cart
WHERE sess_id = '$sid' ";
ผิดแบบมีคำว่า syntax
จำไว้เลย เขียนโค้ดรูปแบบผิด ลืม ใส่ ' หรือ " หรือ ;
แล้วแต่จะลืม
ผิดแบบนี้ บ้างที งมเป็น ชั่วโมง 555+
พยายามลองหาเองก่อนนะ เจอแบบนี้ ฝึกตัวเองด้วย
Date :
2012-09-19 02:09:28
By :
ckcr
ขอบคุณมากน่ะค่ะ
Date :
2012-09-19 09:27:36
By :
bygyam
'$pro_name'มันเป็น string ค่ะใส่แล้ว แต่ก็ยังไม่ได้ค่ะ
Date :
2012-09-19 09:46:02
By :
bygyam
Code (PHP)
<?php
session_start();
$sid = session_id();
include("connect.php");
$sql = "SELECT * FROM cart WHERE sess_id = '$sid' ";
$result_cart = mysql_query($sql);
if(mysql_num_rows($result_cart) == 0) {
die("ท่านไม่เลือกสินค้าไว้ในรถเข็น");
}
$name = "";
$address = "";
$phone = "";
$email = "";
$errmsg = "";
if($_POST) {
foreach($_POST as $k => $v) {
if(empty($v)) {
$errmsg = "ท่านยังใส่ข้อมูลไม่ครบ";
break;
}
$v = stripslashes($v);
$v = htmlspecialchars($v, ENT_QUOTES);
$_POST[$k] = $v;
}
$name = $_POST['name'];
$address =$_POST['address'];
$phone = $_POST['phone'];
$email = $_POST['email'];
if($errmsg == "") {
$sql = "INSERT INTO customer VALUES
(0, '$name', '$address', '$phone', '$email', NOW(), 'No');";
@mysql_query($sql) or die(mysql_error());
$cust_id = mysql_insert_id();
$sql = "SELECT * FROM cart
WHERE sess_id = '$sid' ";
$result = mysql_query($sql);
while($cart = mysql_fetch_array($result)) {
$pro_id =$cart['pro_id'];
$pro_name =$cart['pro_name'];
$price = $cart['price'];
$quantity = $cart['quantity'];
$sql = "INSERT INTO order VALUES
(0, $cust_id, $pro_id, '$pro_name', $price, $quantity)";
@mysql_query($sql) or die(mysql_error());
}
$sql = "DELETE FROM cart
WHERE sess_id = '$sid' ";
@mysql_query($sql) or die(mysql_error());
if($_POST['save_cookie']) {
$expire = time() + 12*30*24*60*60; //เก็บไว้ 1 ปี
setcookie('name', $_POST['name'], $expire);
setcookie('address', $_POST['address'], $expire);
setcookie('phone', $_POST['phone'], $expire);
setcookie('email', $_POST['email'], $expire);
}
echo "<html><body>";
echo "<center>
<div style=\"width: 300px; font-size: 11pt; text-align: left;\">
เราได้จัดเก็บข้อมูลการสั่งซื้อของท่านแล้ว<br />
โดยหลังจากตรวจสอบข้อมูลการสั่งซื้อของท่านแล้ว<br />
จะแจ้งรายละเอียดวิธีการชำระเงินอีกครั้งทางอีเมล<br />
โดยสินค้าจะถูกจัดส่ง หลังจากเราได้รับหลักฐานการชำระเงินจากท่านแล้ว<p />
ขอบพระคุณที่เลือกซื้อสินค้าจากเรา<p />
<a href=\"index.php\">กลับไปที่หน้าหลัก</a>
</div>
</center>
</body></html>";
exit;
}
}
else if($_COOKIE) {
$name = $_COOKIE['name'];
$address = $_COOKIE['address'];
$phone = $_COOKIE['phone'];
$email = $_COOKIE['email'];
}
?>
<!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=windows-874" />
<title>Y-Commerce: Customer Info</title>
<link rel="stylesheet" href="../css/style.css" />
<style type="text/css">
body,td,th {
font-size: 16px;
}
</style>
</head>
<body>
<h3 align="center">ข้อมูลของผู้ซื้อสินค้า</h3>
<?php
echo "<p align=center><font color=red>$errmsg</font></p>";
?>
<form id="form1" name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<table border="0" cellspacing="2" cellpadding="3" align="center">
<tr>
<td width="50" align="right">ชื่อ</td>
<td width="300">
<input name="name" type="text" size="40" value="<?php echo $name; ?>" />
</td>
</tr>
<tr valign="top">
<td align="right">ที่อยู่</td>
<td>
<textarea name="address" type="text"cols="37"><?php echo $address; ?></textarea>
</td>
</tr>
<tr>
<td align="right">โทร</td>
<td>
<input name="phone" type="text" size="40" value="<?php echo $phone; ?>" />
</td>
</tr>
<tr>
<td align="right">อีเมล</td>
<td>
<input name="email" type="text" size="40" value="<?php echo $email; ?>" />
</td>
</tr>
<tr bgcolor="white">
<td colspan="2" align="center">* วิธีการชำระเงิน จะแจ้งให้ทราบทางอีเมล</td>
</tr>
<tr bgcolor="white">
<td colspan="2"> </td>
</tr>
<tr bgcolor="white">
<td colspan="2" align="center">
<input name="button" type="button" onclick="location.href='index.php'" value="ยกเลิก" />
<input name="Submit" type="submit" value="บันทึกข้อมูลการสั่งซื้อ" /></td>
</tr>
<tr bgcolor="white">
<td colspan="2" align="center">
<input type="checkbox" name="save_cookie" value="1" />
เก็บข้อมูลนี้ไว้ใช้ในการสั่งซื้อครั้งต่อไป</td>
</tr>
</table>
</form>
<br />
<table border=1 bordercolor=#cccccc cellpadding=3 align=center style="border-collapse: collapse;">
<caption>รายการสินค้าที่สั่งซื้อ</caption>
<tr bgcolor=#ddddff>
<th align=center width=200>สินค้า</th><th width=50>จำนวน</th>
<th width=50>ราคา</th><th width=80>รวม</th>
</tr>
<?php
$grand_total = 0;
while($cart = mysql_fetch_array($result_cart)) {
$sub_total = $cart['quantity'] * $cart['price'] ;
echo "
<tr valign=top>
<td align=left> {$cart['pro_name']} </td>
<td align=center> {$cart['quantity']} </td>
<td align=center> {$cart['price']} </td>
<td align=right> $sub_total </td>
</tr>";
$grand_total += $sub_total;
}
?>
<tr>
<td colspan=3 align=center>รวมทั้งหมด</td>
<td align=right><?php echo $grand_total; ?></td>
</tr>
</table>
<p> </p>
</body>
</html>
Date :
2012-09-19 09:49:28
By :
bygyam
ลองใส่ column แล้วน่ะค่ะก็ยังไม่ได้ค่ะ ทำไงดีค่ะ
Date :
2012-09-19 15:30:45
By :
bygyam
เอา error มาดูครับ
Date :
2012-09-19 16:08:12
By :
mr.win
ลองแบบนี้ ถ้าข้อมูลไหนเป้น
ตัวเลขให้ใส่ ".$a."
ตัวอักษร '".$a."'
Code (PHP)
$sql = "INSERT INTO customer VALUES
(0, '".$name."', '".$address."', '".$phone."', '".$email."', NOW(), 'No');";
Date :
2012-09-19 16:31:56
By :
tongspy
หน้า ที่มันต้องราวๆนี้นะครับ รูปแบบการ insert
ผมใช้ '".$a."' เพราะข้อมูลผมมันเป้น string เลยต้องมี ' ' ปิด ถ้าเป็นตัวเลขใส่แค่ ".$a." ครับ
Code (PHP)
$arr_row[$i] = array(A1,A2,A3);
"insert into table(field) values ('".$arr_row[$i]."') ";
ประวัติการแก้ไข 2012-09-19 16:43:21 2012-09-19 16:44:41
Date :
2012-09-19 16:42:03
By :
tongspy
ค่ะ จะลองศึกษาดูน่ะค่ะ
Date :
2012-09-19 17:06:37
By :
bygyam
column ไม่ต้องใส่ ' '
Date :
2012-09-19 17:38:50
By :
โจ้
Load balance : Server 04