将$ _SESSION []数据转换为php变量,但它仍无法在mysql查询中运行

ran*_*r91 2 php mysql session

我在检查mysql查询上的$ _SESSION变量时遇到了麻烦.我想要做的是获取用户登录的详细信息,但它似乎无法正常工作.

$user = mysql_real_escape_string($_SESSION['username']);把代码放入常规变量,然后我对数据库进行查询:$sql = "SELECT * FROM admin WHERE username='$user' LIMIT 1";

并计算用户是否存在我使用代码: $userCount = mysql_num_rows($sql); // count the output amount

这似乎不起作用.我一直收到这个错误:"警告:mysql_num_rows()期望参数1是资源,在第18行的/home/alexartl/public_html/CRM/headercode.php中给出的字符串"

顺便说一句,用户帐户确实存在并在我测试时登录.下面是完整代码

  // If the session vars aren't set, try to set them with a cookie
  if (!isset($_SESSION['user_id'])) {
    if (isset($_COOKIE['user_id']) && isset($_COOKIE['username'])) {
      $_SESSION['user_id'] = $_COOKIE['user_id'];
      $_SESSION['username'] = $_COOKIE['username'];   
    }
  }
?>
<?php
//if the username is set
  if (isset($_SESSION['username'])) {
//making the username into a php variable 
        $user = mysql_real_escape_string($_SESSION['username']);
//the query to grab the users name
        $sql = "SELECT * FROM admin WHERE username='$user' LIMIT 1";
        $userCount = mysql_num_rows($sql); // count the output amount
        if ($userCount == 1) {
        while($row = mysql_fetch_array($sql)){
//just the array that grabs all the users info
            $username = $row["username"];
            $password = $row["password"];
            $first_name = $row["first_name"];
            $last_name = $row["last_name"];
            $gender = $row["gender"];
            $birthdate = $row["birthdate"];
            $email_address = $row["email_address"];
            $city = $row["city"];
            $state = $row["state"];
            $retrieval = $row["retrieval"];
            $isAdmin = $row["isAdmin"];
            $join_date = $row["join_date"];


//if the user has "isAdmin" as "Yes", then this link to a "manage Users" page will appear
            if($isAdmin == "Yes"){
                $ifAdmin = '<li><a href="manageUsers.php">Manage Users</a></li>';
                }
            }       
        }
     }      
?>
Run Code Online (Sandbox Code Playgroud)

Jam*_*ter 6

我不会进入"不要使用mysql_*命令",但不要:P

你错过了:

 $result = mysql_query($sql);  //Actually execute the query
Run Code Online (Sandbox Code Playgroud)

然后用作

$userCount = mysql_num_rows($result); // count the output amount
Run Code Online (Sandbox Code Playgroud)

另外,您似乎也没有连接到use您要查询的数据库.

$link = mysql_connect('localhost', 'user', 'pass') or die('Could not connect to mysql server.' );
mysql_select_db('databaseName');
Run Code Online (Sandbox Code Playgroud)