大家好我正在尝试创建登录页面,当我点击登录时出现以下错误,
致命错误:调用未定义的函数session_register()第24行
我很肯定这是正确的代码?这是第24行。
// count is 1 if the above username and password matches
if($count==1){
// now redirect to dashboard page, we also store the username in session for further use in dashboard
session_register("username"); // session checker for pages
$_SESSION['username']= $username; // storing username in session
header("location:session1.php");
}
答案 0 :(得分:4)
自PHP 5.3.0开始,此函数已被弃用,自PHP 5.4.0起已被删除。
您还可以通过设置
$_SESSION
数组的相应成员来创建会话变量。