bravo81 Posted October 19, 2007 Share Posted October 19, 2007 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 More sharing options...
GingerRobot Posted October 19, 2007 Share Posted October 19, 2007 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 More sharing options...
bravo81 Posted October 19, 2007 Author Share Posted October 19, 2007 Thanks alot, appreciate it! Link to comment https://forums.phpfreaks.com/topic/73969-password-reset/#findComment-373351 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.