JamesThePanda Posted November 22, 2009 Share Posted November 22, 2009 hey guy Im making a registration script for my login script Im just wondering as Im realy new with php and mysql what can I do to check that the query was executed properly. I wanted to use some form of "if else" function <?php $host = "localhost"; $username = "root"; $password = ""; $db_name = "members"; $tbl_name = "memtable"; mysql_connect($host,$username,$password) or die (mysql_error()); mysql_select_db($db_name) or die (mysql_error()); $username1 = $_POST['username1']; $password1 = $_POST['password1']; mysql_query("INSERT INTO 'memtable'('name','password') VALUES('$username1','$password1')"); echo 'done'; ?> Any Suggestions Thanks James Quote Link to comment https://forums.phpfreaks.com/topic/182475-im-making-a-registration-script-and-having-problems/ Share on other sites More sharing options...
Alex Posted November 22, 2009 Share Posted November 22, 2009 mysql_query returns false on failure. You're also using a lot of unnecessary single quotes. $result = mysql_query("INSERT INTO memtable (name, password) VALUES('$username1','$password1')"); if(!$result) { echo "There was an error!: " . mysql_error(); } Quote Link to comment https://forums.phpfreaks.com/topic/182475-im-making-a-registration-script-and-having-problems/#findComment-963038 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.