0

我已经找到了十几个关于这个错误的帖子,但我仍然无法让它工作,我真的很困惑。谁能帮我一把?

所以我有一些旧的编码,但它的编码效率不高,因为我们必须为每种不同的情况使用一个新页面。我现在正在尝试自动化它,但不幸的是我无法让它工作。

有效的旧编码的第一个点,points.html:

echo 
"<style>
body{
background-color:#0d161f;
text-align:center; 
padding:5px;
margin:auto;
font-family:Arial, Helvetica, sans-serif; 
font-size:12px;
color:white;
}
#form{
text-align:center;
margin-left:10px;
margin-top:10px;
}
#form td{
padding:5px
}
</style>";

        if ( in_array( $this->memberData['member_group_id'], array(1, 2 ) ) ){
            }
else{
         echo  "<script> alert('You do not have access'); </script>";
        die();}

现在我的新编码显然不起作用,而我几乎使用相同的布局。很抱歉长 js 编码,但我认为这可能是导致这个问题的原因,points.php:

<?php
require '/home/conn.req.php';
echo"<!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>Points</title>
<script type=\"text/javascript\">
function changeSquad(str)
{
if (str=='')
  {
  // if blank, we'll set our innerHTML to be blank.
  document.getElementById(\"result\").innerHTML='';
  return;
  } 
if (window.XMLHttpRequest)
  {   // code for IE7+, Firefox, Chrome, Opera, Safari
      // create a new XML http Request that will go to our generator webpage.
      xmlhttp=new XMLHttpRequest();
  }
else
  {   // code for IE6, IE5
      // create an activeX object
      xmlhttp=new ActiveXObject(\"Microsoft.XMLHTTP\");
  }
  // on state change
  xmlhttp.onreadystatechange=function()
  {
  // if we get a good response from the webpage, display the output
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
  {
      document.getElementById(\"result\").innerHTML=xmlhttp.responseText;
    }
  }
 // use our XML HTTP Request object to send a get to our content php. 
xmlhttp.open(\"GET\",\"getSquad.php?squad=\"+str, true);
xmlhttp.send();
}
</script>
<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\" media=\"screen\" />
</head>
<body>";


if ( in_array( $this->memberData['member_group_id'], array(1, 2 ) ) ){// Declares who have access.
    } else { echo  "<script> alert('You do not have access.'); </script>";
    die();}

我对此很陌生,但我看不出我做错了什么,所以非常感谢任何帮助。

4

1 回答 1

0

你的问题是这一行:

if ( in_array( $this->memberData['member_group_id'], array(1, 2 ) ) ){// Declares who have access.

您正在使用$this,但您不在班级内。我不知道您的应用程序的结构,但您可能应该将其更改为包含您的成员数据信息的对象的变量。

于 2013-08-08T20:06:59.437 回答