Solution computermax2328 Posted April 25, 2013 Solution Share Posted April 25, 2013 You added a second mysql_query in there. Do this... $sqlinsert = "INSERT INTO reviews (`SHOWTITLE`, `SHOWREVIEW`) VALUES('$showtitle', '$showreview')"; $query = mysql_query($sqlinsert); if (!query) { echo "error inserting new record" . mysql_error(); } Quote Link to comment Share on other sites More sharing options...
joshstevens19 Posted April 25, 2013 Author Share Posted April 25, 2013 You added a second mysql_query in there. Do this... $sqlinsert = "INSERT INTO reviews (`SHOWTITLE`, `SHOWREVIEW`) VALUES('$showtitle', '$showreview')"; $query = mysql_query($sqlinsert); if (!query) { echo "error inserting new record" . mysql_error(); } BOOM fixed thanks man!!!! you superstar 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.