我想允许用户更改密码,密码存储在名为user_data.txt的文件中。我如何允许他们使用php编辑他们的密码?我不使用MySQL或Java ..只是PHP ..这是我验证登录的代码。
Y
这是将信息保存到$ users变量
的代码if ($username == $users[$x]['username'] && $_POST['password'] == $users[$x]['password']){
$name = $_POST['username'];
/////this is the code to read the file
$userdata = "user_data.txt";
function arrayfile_to_array($filepath){
$fsize = filesize($filepath);
if ($fsize > 0) {
$fp = fopen($filepath, "r");
$encoded = fread($fp, $fsize);
fclose($fp);
return unserialize($encoded);
}
}
}
基本上我将创建一个允许他们更改密码的帐户页面。
谢谢!