我正在处理分页,由于某种原因,我不能使用 mysql_fetch_array 多次循环遍历结果。
//both $page and $imagesPerPage != 0
$offset = $page * $imagesPerPage
while ($row = mysql_fetch_array($result)) {
$total_images++;
}
echo $total_images;
//echos correct amount
$row = null;
$images_to_offset = 0;
while ($row = mysql_fetch_array($result) && $images_to_offset < $offset) {
$images_to_offset++;
}
echo $images_to_offset;
//echos 0... which is wrong
我应该使用不同的 php 函数来获取数据库中的行数据吗?
谢谢!