当我搜索“php 正确登录”时,我发现的只是如何正确散列密码。但是,我记得读过以下代码是错误的,因为您可以将 ?loggedIn=True 添加到 URL。那么这样做的正确方法是什么?
if($hash == $hashFromDatabase){
$loggedIn = True;
}
Then change the page accordingly to the value of $loggedIn.
当我搜索“php 正确登录”时,我发现的只是如何正确散列密码。但是,我记得读过以下代码是错误的,因为您可以将 ?loggedIn=True 添加到 URL。那么这样做的正确方法是什么?
if($hash == $hashFromDatabase){
$loggedIn = True;
}
Then change the page accordingly to the value of $loggedIn.