0

我在下面的代码中遇到错误, session_register('adminuser') 似乎是原因。我该如何解决这个问题?

// username and password sent from Form
$adminuser=mysql_real_escape_string($_POST['adminuser']); 
$adminpassword=mysql_real_escape_string($_POST['adminpassword']); 
$gpassword=md5($adminpassword); // Encrypted Password
$sql="SELECT id FROM admin WHERE adminuser='$adminuser' and adminpassword='$gpassword'";
$result=mysql_query($sql);
$count=mysql_num_rows($result);

// If result matched $username and $password, table row must be 1 row
if($count==1)
{
    session_register('adminuser'); <--- this code causes error
    header("location:index.php");
}
else
{
    header("location:login.php?error=error");
4

1 回答 1

4

session_register()函数已从 PHP 5.4 中删除。

无需注册会话变量。您可以在需要时简单地分配一个值:

$_SESSION['adminuser'] = 'John';

手册

自 PHP 5.3.0 起,该函数已被弃用,自 PHP 5.4.0 起已移除。

于 2013-08-05T14:00:17.523 回答