Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/variables/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
未定义的变量在第0行的C:\xampp\htdocs\oromma\admin\index.php中有效_Php_Variables_Undefined - Fatal编程技术网

未定义的变量在第0行的C:\xampp\htdocs\oromma\admin\index.php中有效

未定义的变量在第0行的C:\xampp\htdocs\oromma\admin\index.php中有效,php,variables,undefined,Php,Variables,Undefined,我一直在尝试让欢迎页面在管理部分工作。我获取WSOD并添加line1只是为了获得以下>注意未定义的变量在C:\xampp\htdocs\oromma\admin\index.php中有效,在第0行。我不知道哪里出了错,该怎么办。我卡住了。有人能帮忙吗?谢谢你的期待 这是密码 <?php ob_start(); session_start(); ?> <?php virtual('/nsoromma%20web/Connections/nsorommastoreconn.php'

我一直在尝试让欢迎页面在管理部分工作。我获取WSOD并添加line1只是为了获得以下>注意未定义的变量在C:\xampp\htdocs\oromma\admin\index.php中有效,在第0行。我不知道哪里出了错,该怎么办。我卡住了。有人能帮忙吗?谢谢你的期待

这是密码

<?php ob_start();
session_start(); ?>
<?php virtual('/nsoromma%20web/Connections/nsorommastoreconn.php'); ?>
<?php
if (!isset($_SESSION)) {
    session_start();
}
$MM_authorizedUsers = "";
$MM_donotCheckaccess = "true";

// *** Restrict Access To Page: Grant or deny access to this page
function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
// For security, start by assuming the visitor is NOT authorized.
    $isValid = False;
}

{

// When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
// Therefore, we know that a user is NOT logged in if that Session variable is blank.
    if (!empty($UserName)) {
// Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
// Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
            $isValid = true;
        }
// Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
            $isValid = true;
        }
        if (($strUsers == "") && true) {
            $isValid = true;
        }
    }
    return $isValid;
}
$MM_restrictGoTo = "login.php";
if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("", $MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {
    $MM_qsChar = "?";
    $MM_referrer = $_SERVER['PHP_SELF'];
    if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
    if (isset($QUERY_STRING) && strlen($QUERY_STRING) > 0)
        $MM_referrer .= "?" . $QUERY_STRING;
    $MM_restrictGoTo = $MM_restrictGoTo . $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
    header("Location: " . $MM_restrictGoTo);
    exit;
}
?>
<?php
$colname_rsAdmin = "-1";
if (isset($_SESSION['MM_Username'])) {
    $colname_rsAdmin = (get_magic_quotes_gpc()) ? $_SESSION['MM_Username'] : addslashes($_SESSION['MM_Username']);
}
mysql_select_db($database_nsorommastoreconn, $nsorommastoreconn);
$query_rsAdmin = sprintf("SELECT * FROM admin_tbl WHERE email = '%s'", $colname_rsAdmin);
$rsAdmin = mysql_query($query_rsAdmin, $nsorommastoreconn) or die(mysql_error());
$row_rsAdmin = mysql_fetch_assoc($rsAdmin);
$totalRows_rsAdmin = mysql_num_rows($rsAdmin);
?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title>iamankh.com | admin section</title>
    </head>

    <body>
    Welcome <?php echo $row_rsAdmin['first']; ?>, to the admin section
    <h1>&nbsp;</h1>
    </body>
    </html>
<?php
mysql_free_result($rsAdmin);
?>
<?php ob_flush(); ?>

iamankh.com |行政科
欢迎来到管理部分

在我看来,您过早地结束了您的
授权方法:

function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
// For security, start by assuming the visitor is NOT authorized.
    $isValid = False;
} // <-- Remove this

{ // <-- And this
....
函数已授权($strUsers、$strGroups、$UserName、$UserGroup){
//为了安全起见,首先假设访问者未经授权。
$isValid=False;

}//可能IDE“有帮助地”为您自动关闭了该方法。@谢谢。我已经移除了它们,但这会导致WSOD@jbblackman我还认为您不希望使用isAuthorized检查:
&&!(isAuthorized(“,$MM_authorized dusers,…
)。我假设isAuthorized实际上为有效用户返回true,那么它将尝试将它们重定向到login.php…@immulatin我尝试在第2行之后回显“this works”,它起作用了,但当我将它放在第3行之后时,我得到wsod2行和第3行是什么?我不知道你的意思