Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > ทําไมมัน 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, '37', '2', 'TONER', '450', '1')' at line 1



 

[PHP] ทําไมมัน 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, '37', '2', 'TONER', '450', '1')' at line 1

 



Topic : 058282



โพสกระทู้ ( 1,195 )
บทความ ( 0 )



สถานะออฟไลน์




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, '37', '2', 'TONER', '450', '1')' at line 1

ดูโค๊ดนะครับ

Code (PHP)
01.<?php
02.session_start();
03.$sid = session_id();
04.include "storescripts/connect_to_mysql.php";
05.$sql = "SELECT * FROM cart WHERE sid = '$sid';";
06.$result_cart = mysql_query($sql);
07.if(mysql_num_rows($result_cart) == 0) {
08.    die("ท่านไม่เลือกสินค้าไว้ในรถเข็น");
09.}
10. 
11.$firstname = "";
12.$lastname = "";
13.$address = "";
14.$zipcode = "";
15.$phone = "";
16.$email = "";
17.$payment = "";
18.$errmsg = "";
19.if($_POST) {
20.    //ตรวจสอบความถูกต้องของข้อมูล
21.    foreach($_POST as $k => $v) {
22.        if(empty($v)) {
23.            $errmsg = "ท่านยังใส่ข้อมูลไม่ครบ";
24.            break;
25.        }
26.        $v = stripslashes($v);
27.        $v = htmlspecialchars($v, ENT_QUOTES);
28.         
29.        $_POST[$k] = $v;
30.    }
31. 
32.}
33.    $firstname = $_POST['firstname'];
34.    $lastname = $_POST['lastname'];
35.    $address = $_POST['address'];
36.    $zipcode = $_POST['zipcode'];
37.    $phone = $_POST['phone'];
38.    $email = $_POST['email'];
39.    $payment = $_POST['payment'];
40.     
41.    if($errmsg == "") {
42.        $sql = "INSERT INTO members VALUES
43.                    (0, '$firstname','$lastname', '$address','$zipcode', '$phone', '$email','$payment');";
44.                     
45.        @mysql_query($sql) or die(mysql_error());
46.         
47.        $cid = mysql_insert_id();
48.         
49.        $sql = "SELECT * FROM cart WHERE sid = '$sid';";
50.        $result = mysql_query($sql);
51.         
52.        while($cart = mysql_fetch_array($result)) {
53.            $pid = $cart['pid'];
54.            $product_name = $cart['product_name'];
55.            $price = $cart['price'];
56.            $quantity = $cart['quantity'];
57.            $sql = "INSERT INTO order VALUES
58.                    (0, '$cid', '$pid', '$product_name', '$price', '$quantity');";
59. 
60.            @mysql_query($sql) or die(mysql_error());
61.        }
62.         
63.        $sql = "DELETE FROM cart WHERE sid = '$sid';";
64.        @mysql_query($sql) or die(mysql_error());
65.         
66.        if($_POST['save_cookie']) {
67.            $expire = time() + 12*30*24*60*60;              //เก็บไว้ 1 ปี
68.            setcookie('firstname', $_POST['firstname'], $expire);
69.            setcookie('lastname', $_POST['lastname'], $expire);
70.            setcookie('address', $_POST['address'], $expire);
71.            setcookie('zipcode', $_POST['zipcode'], $expire);
72.            setcookie('phone', $_POST['phone'], $expire);
73.            setcookie('email', $_POST['email'], $expire);
74. 
75.    }
76.}
77.else if($_COOKIE) {
78.    $firstname = $_COOKIE['firstname'];
79.    $lastname = $_COOKIE['lastname'];
80.    $address = $_COOKIE['address'];
81.    $zipcode = $_COOKIE['zipcode'];
82.    $phone = $_COOKIE['phone'];
83.    $email = $_COOKIE['email'];
84.}
85.?>




Tag : PHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-04-04 18:27:18 By : kenghockey View : 1423 Reply : 3
 

 

No. 1



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


order is reserved words






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-04-04 18:41:46 By : PlaKriM
 


 

No. 2



โพสกระทู้ ( 1,195 )
บทความ ( 0 )



สถานะออฟไลน์


มันคืออะไรครับ เราจะแก้ไขยังไงครับ มันคือคําสงวนรึป่าวครับ


ประวัติการแก้ไข
2011-04-04 18:53:01
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-04-04 18:50:50 By : kenghockey
 

 

No. 3



โพสกระทู้ ( 11,835 )
บทความ ( 10 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


Quote:
มันคือคําสงวนรึป่าวครับ

ตามนั้น
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-04-04 18:57:40 By : PlaKriM
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ทําไมมัน 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, '37', '2', 'TONER', '450', '1')' at line 1
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 03
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่