我正在尝试创建一个忘记密码的脚本,但是我有点赶上了。
问题是,$query = sprintf("UPDATE
用户SET
密码= '%s'
WHERE
电子邮件= '$forgotpassword'",
mysql_real_escape_string($newpassword));
没有更新“密码”字段中的数据。
'forgot' 值会根据需要进行更新。再一次,我知道脚本正在连接到数据库,因为忘记字段正在根据需要更新为“1”。
继承人的代码:
//Generate a RANDOM MD5 Hash for a password
$random_password=md5(uniqid(rand()));
//Take the first 8 digits and use them as the password we intend to email the user
$emailpassword=substr($random_password, 0, 8);
//Encrypt MD5 format for the database
$newpassword = md5($emailpassword);
// Make a safe query
$query = sprintf("UPDATE `users` SET `password` = '%s'
WHERE `email` = '$forgotpassword'",
mysql_real_escape_string($newpassword));
$query = sprintf("UPDATE `users` SET `forgot` = '1'
WHERE `email` = '$forgotpassword'");
mysql_query($query)or die('Could not update members: ' . mysql_error());
我知道这个版本的 MYSQL 已经过时了,但它是这个项目必须使用的。只得和我一起去那个。
干杯