纠缠不清..未定义索引通知

时间:2013-10-09 10:26:00

标签: php session

我正试图从头开始创建一个论坛,我有点纠结。在下面的代码中,我试图设置一个条件,如果用户没有登录,他就无法添加类别。但是,如果用户被记录,代码可以正常工作,但是我得到一个“未定义的索引:如果不是,我会得到用户ID。我试图添加if(isset($_SESSION['userid'])),但这只是隐藏通知”你必须登录“任何可怕的想法?

<?php

include("_/inc/dbcon.php");
    $link = mysql_connect($host, $login, $pw);
    mysql_select_db($database);
    if($link){
    }
include("_/inc/session_handler.php");
$create_cat ="";
if($_SESSION['userid'] == false /*| $_SESSION['rank'] !='Emperor' || $_SESSION['rank'] !='Destroyer' ||  $_SESSION['rank']!= 'Tekken Lord' )*/)
{
    //the user is not an admin
    echo 'Sorry, you do not have sufficient rights to access this page.';
}
else
{
    //the user has admin rights
    if($_SERVER['REQUEST_METHOD'] != 'POST')
    {   echo "YOU HAVE THE RIGHTS!";
        //the form hasn't been posted yet, display it

        $create_cat .= '<form method="post" action="">
            <input type="text" name="cat_name" placeholder="Category Name"/><br />
            <input type="text" name="cat_description" placeholder="Category Description" /><br />
            <input type="submit" value="Add category" />
         </form>';
    }
    else
    {
        //the form has been posted, so save it
        $sql = "INSERT INTO sp_categories(cat_name, cat_description)
           VALUES('" . mysql_real_escape_string($_POST['cat_name']) . "',
                 '" . mysql_real_escape_string($_POST['cat_description']) . "')";
        $result = mysql_query($sql);
        if(!$result)
        {
            //something went wrong, display the error
            echo 'Error' . mysql_error();
        }
        else
        {
            $create_cat .=  'New category succesfully added.';
        }
    }
}

?>

3 个答案:

答案 0 :(得分:0)

如果您确定您的代码有效(即使这是一个不好的示例),请使用error_reporting(E_ERROR);删除通知。

或许您在错误的地方使用了isset()

答案 1 :(得分:0)

当您在数组中查找不存在的键时,会收到未定义的索引错误。尝试使用array_key_exists:http://php.net/manual/en/function.array-key-exists.php

if ( !array_key_exists( 'userid', $_SESSION ) ) {}

希望这有帮助

答案 2 :(得分:0)

当您尝试调用数组的索引时,如果未定义,则会发出未定义的索引错误。
例如:

// Define an array with a few keys and values...
$data = array(
    'vehicle' => "car",
    'color'   => "red",
);
echo $data['size']; // This line will issue an undefined index error...

...因为索引 size 不是现有密钥。

在尝试调用之前,请务必检查数组中是否存在键:

if (isset($_SESSION['userid']) && $_SESSION['userid'] === false)

PS:我注意到你正在使用mysql_*函数,这些函数已被弃用。请尝试使用PDO