您好我正在尝试使用 php 在 html 表中水平显示从 mysql 表中检索到的数据。下面的代码运行良好,除了它在我的数据库中遗漏了第一条记录(从第二条记录开始)。我确定它与柜台有关,但我似乎无法弄清楚如何让它停止这样做。如果有人能指出我的错误,我将不胜感激!
$items = 5;
$query = "SELECT * FROM members ";
$result = mysql_query($query)
or die(mysql_error());
$row = mysql_fetch_array($result);
if (mysql_num_rows($result) > 0) {
echo '<table border="1">';
$i = 0;
while($row = mysql_fetch_array($result)){
$first_name = $row['first_name'];
if ($i==0) {
echo "<tr>\n";
}
echo "\t<td align=\center\">$first_name</td>\n";
$i++;
if ($i == $items) {
echo "</tr>\n";
$i = 0;
}
}//end while loop
if ($i > 0) {
for (;$i < $items; $i++) {
echo "<td> </td>\n";
}
echo '</tr>';
}//end ($i>0) if
echo '</table>';
}else {
echo 'no records found';
}