我不知道我是否做得对,这就是我得到的:
while($row = mysqli_fetch_assoc($result)) {
$items = mysqli_num_rows($row);
}
由于某种原因,它总是将 $items = 设置为 1。
这是我的mysqli_query ...
$top10_query = "SELECT * FROM users WHERE userid='$userid'";
$result = mysqli_query($cxn, $top10_query) or die("Couldn't execute query.");
$row = mysqli_fetch_assoc($result);