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()); 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. 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! Link to comment https://forums.phpfreaks.com/topic/211720-sql-update-error/#findComment-1103662 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.