Possible Duplicate:
forget password page, creating a generated password to email to the user.
I am trying to create a change password page. The code below should check to make sure the user is in the database, confirm there current password and allow them to change their password. It validates their new password correctly checking to make sure they are the same and a certain length, but it does not return an error message if the user name is not in the database and it says that the current password to a user that is in the database is wrong. I think it is not matching the hash passwords correctly but I am not sure. Can anyone help me fix these problems. Thanks.
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Change Password Confrim</title>
</head>
<body>
<?php
$db_server = "server";
$db_username = "name";
$db_password = "pass";
$con = mysql_connect($db_server, $db_username, $db_password);if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$database = "User";
$er = mysql_select_db($db_username);
if (!$er)
{
print ("Error - Could not select the database");
exit;
}
//////////Collect the form data ////////////////////
$username =$_P0ST['username'];
$cur_password=$_POST['cur_password'];
$password=$_POST['password'];
$password2=$_POST['password2'];
/////////////////////////
$password = mysql_real_escape_string($password);
$password2 = mysql_real_escape_string($password2);
$username = mysql_real_escape_string($username);
$cur_password = mysql_real_escape_string($cur_password);
//Setting flags for checking
$status = "OK";
$msg="";
//Checking to see if password is at least 3 char max 8
if ( strlen($password) < 3 or strlen($password) > 15 )
{
$msg=$msg."Password must be more than 3 char legth and maximum 15 char lenght<br/>";
$status= "NOTOK";
}
//Checking to see if both passwords match
if ( $password <> $password2 )
{
$msg=$msg."Both passwords are not matching<br/>";
$status= "NOTOK";
}
$CorrectUser = mysql_query("SELECT * FROM User WHERE username ='$username' AND password = MD5('$cur_password')");
$row = mysql_fetch_array($CorrectUser);
if ($row['username'] == $username)
{
$status = "OK";
}
else {
print("Your username is not in the database. Please check that you enter the correct username and try again.");
$status = "NOTOK";
}
if ($row['cur_password'] == MD5('$cur_password'))
{
$status = "OK";
}
else
{
print("You entered the wrong current passowrd");
$status = "NOTOK";
}
if($status<>"OK"){
echo "<font face='Verdana' size='2' color=red>$msg</font><br><center><input type='button' value='Retry' onClick='history.go(-1)'></center>";
}
else
{ // if all validations are passed.
if(mysql_query("UPDATE User SET password = MD5('$password') WHERE username ='$username'"))
{
echo "<font face='Verdana' size='2' ><center>Thanks <br> Your password changed successfully.</font></center>";
}
else
{
echo "<font face='Verdana' size='2' color=red><center>Sorry <br> Failed to change password.</font></center>";
}
}
?>
<center>
<br><br><a href='Settings.html'>Settings Page</a></center>
</body>
</html>
mysql_select_db($db_username);should cause a problem in case the database name is not the same as the username – ComputerJy Dec 2 '11 at 22:49