unkownname Posted August 2, 2007 Share Posted August 2, 2007 Hello everyone, Ive been having problems with the following mysql and dont know why or what could someone explain. $uid=$_SESSION['uid']; mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','$_POST[to]','$uid','$uid')"); mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','$_POST[to]','$uid','$_POST[to]')")or die(mysql_error()); Error is 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 'to,from,inbox) VALUES('sd','d','3','2','3')' at line 1 Link to comment https://forums.phpfreaks.com/topic/62995-need-some-help/ Share on other sites More sharing options...
clearstatcache Posted August 2, 2007 Share Posted August 2, 2007 bwt ds 1... $uid=$_SESSION['uid']; mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','{$_POST[to]}','$uid','$uid') "); mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','{$_POST[to]}','$uid','{$_POST[to]}') ")or die(mysql_error()); Link to comment https://forums.phpfreaks.com/topic/62995-need-some-help/#findComment-313698 Share on other sites More sharing options...
fenway Posted August 2, 2007 Share Posted August 2, 2007 My guess is that FROM ( and/or TO ) and reserved keywords... backtick them, or better yet, change them. Link to comment https://forums.phpfreaks.com/topic/62995-need-some-help/#findComment-314198 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.