我刚刚安装了 xampp,所以我可以离线测试我的网站。现在我得到了许多未定义的索引或未定义的变量错误,我知道如何修复。现在登录可以在线工作,但使用 xampp 无法正常工作。代码没有错。我将数据库在线导入到离线。我已经指出了问题所在,但不知道如何解决。
这是我测试登录详细信息是否正确的代码。
$Blowfish_Pre = '$2a$05$';
$Blowfish_End = '$';
$hashed_password = crypt($password, $Blowfish_Pre . $salt . $Blowfish_End);
//check to see if they match
if ($username==$dbusername&&$hashed_password==$dbpassword){
离线$hashed_password
账户的回显是$2a$05$CEDaiUETMOTuZ1tzSX1dW.1rmbYfiu1Hf6jnZyJ5DouQOIHEPwXiW
在线$hashed_password
帐户的回显是
$2J7rPSsTYb1Q
我已经确定 crypt 的在线工作方式与离线工作方式不同?为什么会这样,我该如何解决?