Jump to content

Password reset


bravo81

Recommended Posts

Hi all,

 

I have created a login system using php and have added a forgot password page as "forgotpass.php"

 

But i dont know what code i should use to get the page to check if $username & $email are from the same the users account.

 

its a basic form that asks for your:

Username:

Email:

Submit

 

i want the code to check that the username is in the database, then move on to check if the email given matches the one given with the username.

 

Any help would be appreciated, thanks :)

 

Link to comment
https://forums.phpfreaks.com/topic/73969-password-reset/
Share on other sites

It'll be something along the lines of:

 

<?php
$sql = "SELECT COUNT(*) FROM `yourtable` WHERE `email`='$email' AND `username`='$username'";
$result = mysql_query($sql) or die(mysql_error());
$num = mysql_result($result,0);
if($num != 1){
echo 'The information you entered does not match any account!';
}else{
//process password reset
}
?>

Link to comment
https://forums.phpfreaks.com/topic/73969-password-reset/#findComment-373316
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.