注意:会话已经启动 - 忽略第2行的C:\ xampp \ htdocs \ teller \ fungsi.php中的session_start()

时间:2014-05-28 05:33:56

标签: php session

我收到通知

Notice: A session had already been started - ignoring session_start() in C:\xampp\htdocs\teller\fungsi.php on line 2
Notice: Use of undefined constant status - assumed 'status' in C:\xampp\htdocs\teller\fungsi.php on line 17
Notice: Use of undefined constant status - assumed 'status' in C:\xampp\htdocs\teller\fungsi.php on line 20

在我的代码中。我在旧的sql版本中尝试此功能是成功的。但在我的sql versi 5.5.16中,它不起作用。 这是我的源代码:

<?php 
session_start();
function ver_user($username,$password)
{
    mysql_connect('localhost', 'root', '');
    mysql_select_db('teller');
    if (!empty($username)) 
        {
            $query="SELECT * FROM `user` WHERE `username`='$username'";
            $action=mysql_query($query);
            $data=mysql_fetch_array($action);
            $passmd5=md5($password);
            if ($data['password']==$passmd5)
                {
                    $_SESSION['username']=$username;
                    $_SESSION['password']=$password;
                    if ($data[status]==1){
                        $data['0']="valid";
                    }
                    if ($data[status]==2) {
                        $data['0']="valid1";
                    }   
                    return $data;
                }
            else 
                {
                    $data['0']="invalid";
                    return $data;
                }
        }
}
function logout()
{
    session_destroy();
}
?>

1 个答案:

答案 0 :(得分:0)

第二次和第三次警告是因为

$data[status]

应该是

$data['status']

问题中没有足够的信息来解释为什么会收到关于session_start()的警告。在此之前,您需要检查更多代码以找到您正在呼叫session_start()的位置。