pavankat Posted February 21, 2012 Share Posted February 21, 2012 I'd be so grateful if someone could tell me what's going on with my sql query. When I run the below code - it gives me this: The query reads as: INSERT INTO `users_calendar` ('','1','2','2','14','2012','') 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 ''','1','2','2','14','2012','')' at line 1 $query = "INSERT INTO `users_calendar` ('','".$_SESSION['user_id']."','".$id."','".$month."','".$day."','".$year."','".$serving."')"; echo '<br /> The query reads as: ' . $query; $query_run = mysql_query($query) or die(mysql_error()); Quote Link to comment Share on other sites More sharing options...
AyKay47 Posted February 21, 2012 Share Posted February 21, 2012 You are using invalid syntax for the INSERT statement. Check the documentation for the correct syntax. Quote Link to comment Share on other sites More sharing options...
The Little Guy Posted February 21, 2012 Share Posted February 21, 2012 You are missing the word "VALUES" INSERT INTO `users_calendar` VALUES ('','1','2','2','14','2012','') Quote Link to comment Share on other sites More sharing options...
pavankat Posted February 21, 2012 Author Share Posted February 21, 2012 omg lol. thanks. Quote Link to comment 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.