Compare md5 encrypted password with submitted password


Find below code to check md5 encrypted password with submitted password.

$password = “avinash”;
$store_password = md5($password);

$submit_password =$_POST[‘submit_password’];
$sub_password = md5($submit_password);

if($sub_password==$store_password){

echo “Success password”;

}

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s