Jump to content

[SOLVED] Simple Syntax Error


kpetsche20

Recommended Posts

Hey, I keep getting this error for my insert query, it's driving me nuts because I can't find any problem.

mysql_query("INSERT INTO order (userid) VALUES('".$userid."')") or die(mysql_error());

 

 

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 (userid) VALUES('126')' at line 1

Link to comment
https://forums.phpfreaks.com/topic/126393-solved-simple-syntax-error/
Share on other sites

Hey, I keep getting this error for my insert query, it's driving me nuts because I can't find any problem.

mysql_query("INSERT INTO order (userid) VALUES('".$userid."')") or die(mysql_error());

 

 

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 (userid) VALUES('126')' at line 1

 

Is your userid datatype is varchar ... if not please remove '' i.e '123' instead it should be 123 if not numeric .

 

The database is setup fine, it's a mysql_query() error

 

Hey, I keep getting this error for my insert query, it's driving me nuts because I can't find any problem.

mysql_query("INSERT INTO order (userid) VALUES('".$userid."')") or die(mysql_error());

 

 

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 (userid) VALUES('126')' at line 1

 

Is your userid datatype is varchar ... if not please remove '' i.e '123' instead it should be 123 if not numeric .

 

The database is setup fine, it's a mysql_query() error

 

Hey, I keep getting this error for my insert query, it's driving me nuts because I can't find any problem.

mysql_query("INSERT INTO order (userid) VALUES('".$userid."')") or die(mysql_error());

 

 

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 (userid) VALUES('126')' at line 1

 

Is your userid datatype is varchar ... if not please remove '' i.e '123' instead it should be 123 if not numeric .

 

 

I will also suggest you to run your query in PHPMyAdmin interface.

 

what happen if you run following query in sql mode.

 

INSERT INTO order (userid) VALUES(123);

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.