現在、私は次のようにセッションを開始しています:
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'];
のとおり、セッションを開始するのに最適な方法なのか、それともより良い方法があるのか疑問に思っています。
ご回答ありがとうございます!