svgmx5 Posted August 4, 2011 Share Posted August 4, 2011 I'm not sure why but i keep getting the following 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=1 WHERE id=30' at line 1" Normally i can figure it out, since i'm not really new to php at all, however i just don't know why this is happening i looked over everything and i can't find the reason behind this error. So i'm hoping someone else can look it over and maybe...just maybe catch what i'm not seeing. require("config.php"); $x = mysql_real_escape_string($_GET['queryString']); $y = mysql_real_escape_string($_GET['string']); $updatePicOrder = mysql_query("UPDATE pointImages SET order='$queryString' WHERE id='$inputString'") or die(mysql_error()); Link to comment https://forums.phpfreaks.com/topic/243771-why-am-i-getting-this-error-when-i-try-to-update-my-database-record/ Share on other sites More sharing options...
phpSensei Posted August 4, 2011 Share Posted August 4, 2011 I believe ORDER is a reserved word in Mysql try this $updatePicOrder = mysql_query("UPDATE pointImages SET `order`='$queryString' WHERE `id`='$inputString'") or die(mysql_error()); Link to comment https://forums.phpfreaks.com/topic/243771-why-am-i-getting-this-error-when-i-try-to-update-my-database-record/#findComment-1251670 Share on other sites More sharing options...
svgmx5 Posted August 4, 2011 Author Share Posted August 4, 2011 darn it...i keep forgetting about about those...yea you were right ORDER is reserved in mysql....what i just did was change the row name to something else and well...it worked! Thanks for reminding me not to use ORDER as a row name Link to comment https://forums.phpfreaks.com/topic/243771-why-am-i-getting-this-error-when-i-try-to-update-my-database-record/#findComment-1251671 Share on other sites More sharing options...
phpSensei Posted August 4, 2011 Share Posted August 4, 2011 np, just mark the topic as solved. Link to comment https://forums.phpfreaks.com/topic/243771-why-am-i-getting-this-error-when-i-try-to-update-my-database-record/#findComment-1251683 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.