SamW Posted December 10, 2009 Share Posted December 10, 2009 Hi everyone, I'm trying to validate the password entered by the user with the password in the database. I've worked out that it checks the username fine (if the username doesn't exist it displays an error), however when it tries to validate the password with the mysql password it never works. The working 'example' is at http://scapersclearing.com/fansite/login.php; and this is the PHP (note base.php contains the database information and header.php, navigation.php and footer.php and all front-end). I'm planning on adding html entities and preventing SQL injection once this works. Username: Test - Password: password89 (md5 c1c2434f064da663997b1a2a233bf9f6) <?php include("base.php"); //Include MySQL connection $username = $_POST['username']; //Connect form username with strings $password = $_POST['password']; //Connect form password with strings $salt = "xia8u28jd0ajgfa"; //Define the salt string $salt2 = "oqipoaks42duaiu"; //Define the second salt string $password = md5($salt.$password.$salt2); //Encrypt the password $result = mysql_query("SELECT * FROM members WHERE username = '".$username."'"); //Open the members table while($row = mysql_fetch_array( $result )) { //Convert the members table into an array if ( $username != $row['username'] ) { //If user entered username doesn't equal the database username include("header.php"); //Print the message include("navigation.php"); echo "Invalid username or password!"; include("footer.php"); } else { $username = $username_new; $password = $password_new; if ( $row['password'] == $password_new ) { //Validate username and password setcookie('c_username', $username_new, time()+6000); //Set the username cookie setcookie('c_password', $password_new, time()+6000); //Set the cookie header("Location:index.php"); //Redirect to home page } else { include("header.php"); //Print the message include("navigation.php"); echo "<div class=\"content\"><p>Invalid username or password!<p></div>"; include("footer.php"); } } } ?> Quote Link to comment https://forums.phpfreaks.com/topic/184603-database-validation/ Share on other sites More sharing options...
cags Posted December 10, 2009 Share Posted December 10, 2009 $password = $password_new; if ( $row['password'] == $password_new ) { //Validate username and password You set $password = $password_new then immediately check $password against the value fetched from the database. At no point in your code do you seem to give $password_new a value, meaning you are comparing the value in the database against a null/empty value. Quote Link to comment https://forums.phpfreaks.com/topic/184603-database-validation/#findComment-974742 Share on other sites More sharing options...
SamW Posted December 11, 2009 Author Share Posted December 11, 2009 <?php include("base.php"); //Include MySQL connection $username = $_POST['username']; //Connect form username with strings $password = $_POST['password']; //Connect form password with strings $salt = "xia8u28jd0ajgfa"; //Define the salt string $salt2 = "oqipoaks42duaiu"; //Define the second salt string $password = md5($salt.$password.$salt2); //Encrypt the password $result = mysql_query("SELECT * FROM members WHERE username = '".$username."'"); //Open the members table while($row = mysql_fetch_array( $result )) { //Convert the members table into an array if ( $username != $row['username'] ) { //If user entered username doesn't equal the database username include("header.php"); //Print the message include("navigation.php"); echo "Invalid username or password!"; include("footer.php"); } else { if ( $row['password'] == $password ) { //Validate username and password setcookie('c_username', $username, time()+6000); //Set the username cookie setcookie('c_password', $password, time()+6000); //Set the cookie header("Location:index.php"); //Redirect to home page } else { include("header.php"); //Print the message include("navigation.php"); echo "<div class=\"content\"><p>Invalid username or password!<p></div>"; include("footer.php"); } } } ?> So this should work? It still does the same thing. " $username = $_POST['username']; //Connect form username with strings $password = $_POST['password']; //Connect form password with strings " shows that it has a value. Quote Link to comment https://forums.phpfreaks.com/topic/184603-database-validation/#findComment-975169 Share on other sites More sharing options...
cags Posted December 11, 2009 Share Posted December 11, 2009 Before this line... if ( $username != $row['username'] ) { //If user entered username doesn't equal the database username ...add... echo "Comparing $username with " . $row['username']; It should be obvious why they don't match. Quote Link to comment https://forums.phpfreaks.com/topic/184603-database-validation/#findComment-975289 Share on other sites More sharing options...
SamW Posted December 11, 2009 Author Share Posted December 11, 2009 Umm...it matches perfectly? Now I'm having troubles with the if statement. The wrong password and correct password if's match; however if there is a wrong username nothing happens. Also; how can I set the cookies and redirect the user without getting a headers already send message? I've tried putting it in a function at the top of the page; however that didn't work. Quote Link to comment https://forums.phpfreaks.com/topic/184603-database-validation/#findComment-975369 Share on other sites More sharing options...
SamW Posted December 11, 2009 Author Share Posted December 11, 2009 (Bump) I really need help Quote Link to comment https://forums.phpfreaks.com/topic/184603-database-validation/#findComment-975432 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.