2

我的表有 10 条记录,mysql_num_rows 表示 mysql 资源中有 10 行,在 phpMyAdmin 中我可以看到 10 行,但是当调用 mysql_fetch_array 时,前两次正常工作,然后最后 8 次返回 FALSE。

为什么?

$query = "SELECT * FROM building_types";
$building_types = mysql_query($query) or die( mysql_error() );// works
echo mysql_num_rows($building_types); // prints 10
$num_rows = mysql_num_rows($building_types); 
for ( $i = 0 ; $i < $num_rows ;$i++ )
{
  echo"hi1"; // this is printed 10 times
  $building_type = mysql_fetch_array($building_types);
  echo $building_type; // prints Array 2 times not 10 times ...
  if ( $building_type === FALSE ) echo"hi2"; //this is printed the last 8 times ...

谢谢,

4

2 回答 2

0

错误是由于变量 $building_types 的重用,

于 2012-03-30T21:57:53.583 回答
0

尝试使用while循环

例如

while ($row = mysql_fetch_assoc($building_types)) {
    echo $row['ColumnName'];
}
于 2012-03-29T13:31:02.650 回答