TheFilmGod Posted August 27, 2007 Share Posted August 27, 2007 // now we insert it into the database $insert = "INSERT INTO homecoming (name, brunch, dance, game) VALUES ('$name', '$brunch', '$dance', '$game')"; mysql_query($insert) or die("Error: ". mysql_error(). " with query ". $insert); I know there was a similar topic to this recently but I didn't want to post my code there. I don't get the problem. Please help! I'm a newbie!! Super newbie! :'( Quote Link to comment https://forums.phpfreaks.com/topic/66816-solved-php-master-anyone-myannoyingsql/ Share on other sites More sharing options...
lightningstrike Posted August 27, 2007 Share Posted August 27, 2007 Are you sure you used mysql_select_db() to select the database you are using, prior to making your query. http://www.php.net/mysql_select_db If so it's possible you may have unescaped quotes in the variables (check by printing them) if so, escape them with mysql_real_escape_string(); http://www.php.net/mysql_real_escape_string Quote Link to comment https://forums.phpfreaks.com/topic/66816-solved-php-master-anyone-myannoyingsql/#findComment-334961 Share on other sites More sharing options...
tibberous Posted August 27, 2007 Share Posted August 27, 2007 ... if so, escape them with mysql_real_escape_string(); ... And if not Whats the output? Error message? Quote Link to comment https://forums.phpfreaks.com/topic/66816-solved-php-master-anyone-myannoyingsql/#findComment-334969 Share on other sites More sharing options...
TheFilmGod Posted August 27, 2007 Author Share Posted August 27, 2007 I got it to work. I didn't declare the database. Quote Link to comment https://forums.phpfreaks.com/topic/66816-solved-php-master-anyone-myannoyingsql/#findComment-334994 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.