由于我在表用户和评论之间创建了一个链接,因此我无法执行选择查询来获取我的用户。当我尝试时,我收到此错误:
警告:mysqli_num_rows() 期望参数 1 为 mysqli_result,布尔值在 /Applications/MAMP/htdocs/ZonderFacebook/loggedIn.php 的第 144 行 还没有用户!
我的主页:
include_once('classes/User.class.php');
$user = new User();
$showUser = $user->getUser();
?><!DOCTYPE html>
<head>
<title>Bugz</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<style>
body{
padding-left: 50px;
padding-top: 10px;
padding-bottom: 10px;
div.bugform{
float:left;
}
div.comments{
float:right;
}
}
</style>
</head>
<body>
<h1>Welcome to Bugz</h1>
<div id="getUser">
<?php
if(mysqli_num_rows($showUser) > 0)
{
while ($row = mysqli_fetch_array($showUser))
{
echo "<option value=" . $row['user_id'] . ">" . $row['username'] . "</option>";
}
}
else {
echo "No users yet!";
}
?>
</div>
User.class.php 中的函数
public function getUser()
{
$conn = new mysqli("localhost","****","****","PhpProject");
if ($conn -> connect_errno) {
throw new Exception("No connection with database!");
} else {
$sqlUsertype = "select user_id, username from User;";
$result = $conn -> query($sqlUsertype);
return $result;
}
当我在 PHPAdmin 中输入 SQL 查询时:
SELECT `user_id`,`username` FROM `Users`
它给了我 user_id 和用户的用户名。
有人可以帮助我吗?这是一个学校项目,因为这个问题我被困住了。