我不断收到此错误消息,不知道为什么。这是一个登录脚本,我在这里复制了表单,因为我不知道如何使用 PHPASS 进行登录。这是我的代码:
$email = ($_POST['email']);
$pass = ($_POST['pass']);
require 'connect.php';
require 'PasswordHash.php';
$hash = '*';
$login = $con->prepare("SELECT password FROM basicuserinfo WHERE email=:email");
$login->bindParam(':email', $email);
$login->execute();
$login->bind_result($hash);
if (!$login->fetch() && $con->errno)
die();
if ($hasher->CheckPassword($pass, $hash)) {
$what = 'Authentication succeeded';
} else {
$what = 'Authentication failed';
}
unset($hasher);