bobicles2 Posted April 22, 2010 Share Posted April 22, 2010 The code below after Inserting into my table echos either "error:" or "Thank you.." where have i gone wrong here? the intention was to echo an error if there was one...otherwise if it works fine and adds to the table echo "Thanks etc" $sql="INSERT INTO Events (Event, Genre, Date, Price, Venue, Tickets, Postcode) VALUES ('$event','$genre','$date','$price','$venue','$tickets','$postcode')"; $result = mysql_query($sql, $con); if ($result) { echo "Error :" . mysql_error(); } else { echo "Thank You, Your Event has now been added to our Records"; } mysql_close($con); Quote Link to comment https://forums.phpfreaks.com/topic/199410-small-syntax-issue/ Share on other sites More sharing options...
andrewgauger Posted April 22, 2010 Share Posted April 22, 2010 First, I know this is handy for debugging, but don't echo errors to the end users, they don't need to know your table's structure. Second, testing if ($result) is not the correct way to do this: try: $sql="INSERT INTO Events (Event, Genre, Date, Price, Venue, Tickets, Postcode) VALUES ('$event','$genre','$date','$price','$venue','$tickets','$postcode')"; if (!mysql_query($sql, $con)) { echo "error!"; } else { echo "Thank you"; } Really the only thing you had wrong is they were backwards. Quote Link to comment https://forums.phpfreaks.com/topic/199410-small-syntax-issue/#findComment-1046596 Share on other sites More sharing options...
Mchl Posted April 22, 2010 Share Posted April 22, 2010 Second, testing if ($result) is not the correct way to do this: Why not? Quote Link to comment https://forums.phpfreaks.com/topic/199410-small-syntax-issue/#findComment-1046626 Share on other sites More sharing options...
andrewgauger Posted April 23, 2010 Share Posted April 23, 2010 When I typed that I was thinking it was a select query, I forgot to remove that from the post. EDIT: this is a valid way to test for INSERT queries. Quote Link to comment https://forums.phpfreaks.com/topic/199410-small-syntax-issue/#findComment-1046750 Share on other sites More sharing options...
bobicles2 Posted April 23, 2010 Author Share Posted April 23, 2010 When I typed that I was thinking it was a select query, I forgot to remove that from the post. EDIT: this is a valid way to test for INSERT queries. slightly confused, so your revised version should work fine? Quote Link to comment https://forums.phpfreaks.com/topic/199410-small-syntax-issue/#findComment-1046950 Share on other sites More sharing options...
cags Posted April 23, 2010 Share Posted April 23, 2010 To clarify andrewgaugers code will work. Your original code was back to front. You were outputting an error message if $result was true, whereas as result of true means the insert was successful. Quote Link to comment https://forums.phpfreaks.com/topic/199410-small-syntax-issue/#findComment-1046954 Share on other sites More sharing options...
andrewgauger Posted April 23, 2010 Share Posted April 23, 2010 Yeah, the code was fine, but the statement "Second, testing if ($result) is not the correct way to do this:" should have been removed. Quote Link to comment https://forums.phpfreaks.com/topic/199410-small-syntax-issue/#findComment-1047153 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.