目前我開始一個會話如下安全會話:PHP如何啓動
if ($hasher->CheckPassword($password, $hash)) { //$hash is the hash retrieved from the DB
$what = 'Authentication succeeded';
$_SESSION['username']=$_POST['username'];
header('Location: securedpage1.php');
} else {
$what = 'Authentication failed';
echo "Incorrect Password";
include 'login.php';
exit();
}
,你可以看到我想知道如果$_SESSION['username']=$_POST['username'];
是啓動一個會話或者有更好的做法
謝謝你的回覆!
我會檢索用戶的ID並將其存儲在會話中。我喜歡我的會話數據被認爲是理智的,而有效的ID就是一個例子。 – Kos
謝謝你的回覆,你能否解釋我將如何檢索用戶ID並將其存儲在會話中? – neeko
什麼是「安全會話」,爲什麼你認爲你當前的會話不安全? – zerkms