在 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>';
}
}
}
}
?>