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()); Link to comment https://forums.phpfreaks.com/topic/257443-why-doesnt-my-sql-work/ 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. Link to comment https://forums.phpfreaks.com/topic/257443-why-doesnt-my-sql-work/#findComment-1319518 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','') Link to comment https://forums.phpfreaks.com/topic/257443-why-doesnt-my-sql-work/#findComment-1319565 Share on other sites More sharing options...
pavankat Posted February 21, 2012 Author Share Posted February 21, 2012 omg lol. thanks. Link to comment https://forums.phpfreaks.com/topic/257443-why-doesnt-my-sql-work/#findComment-1319639 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.