elmas156 Posted August 25, 2010 Share Posted August 25, 2010 I'm getting the following error and I've looked everywhere but I can't figure out what's wrong... any suggestions? 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 'read = 'yes' WHERE messid = '1'' at line 1 Here's the code: mysql_query("UPDATE messages SET read = '$yes' WHERE messid = '$messid'") or die (mysql_error()); Quote Link to comment https://forums.phpfreaks.com/topic/211720-sql-update-error/ Share on other sites More sharing options...
PFMaBiSmAd Posted August 25, 2010 Share Posted August 25, 2010 http://dev.mysql.com/doc/refman/5.1/en/reserved-words.html Read, as you might imagine, and the point where the error occurred, is a reserved keyword. Either rename your column to something else or enclose read in back-ticks `` every time you use it in a query. Quote Link to comment https://forums.phpfreaks.com/topic/211720-sql-update-error/#findComment-1103652 Share on other sites More sharing options...
elmas156 Posted August 25, 2010 Author Share Posted August 25, 2010 Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/211720-sql-update-error/#findComment-1103662 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.