分页系统总是缺少1个结果


Pagination system always missing 1 result

我有一个分页系统,从数据库中获取所有结果&然后将它们加载到分页中。

假设我将限制设置为每页5个结果,它将生成更多页面,并按日期排序结果;时间。

但是我有一个问题,我的系统总是缺少数据库中最新的结果(按日期/时间),我不知道为什么…

这是代码:

// how many rows to show per page
$rowsPerPage = 10;
// by default we show first page
$page_num = 1;
// if $_GET['page'] defined, use it as page number, $_GET gets the page number out of the url
//set by the $page_pagination below
if(isset($_GET['page'])){$page_num = $_GET['page'];}
//the point to start for the limit query
$offset = $page_num; 
// Zero is an incorrect page, so switch the zero with 1, mainly because it will cause an error with the SQL
if($page_num == 0) {$page_num = 1;}
// counting the offset
$sql = "SELECT * FROM comments ORDER BY date, time desc LIMIT $offset, $rowsPerPage";
$res = $pdo->query($sql);
// how many rows we have in database
$sql2  = "SELECT COUNT(comment_id) AS numrows FROM comments";
$res2  = $pdo->query($sql2);
$row2  = $res2->fetch();
$numrows = $row2['numrows'];
// print the random numbers
while($row = $res->fetch())
{
    //Echo out your table contents here.
    echo $row[1].'<BR>';
    echo $row[2].'<BR>';
    echo '<BR>';
}
// how many pages we have when using paging?
$numofpages = ceil($numrows/$rowsPerPage);
// print the link to access each page
$self = "events.php?";
    $page_pagination = '';
if ($numofpages > '1' ) {
    $range = 10; //set this to what ever range you want to show in the pagination link
    $range_min = ($range % 2 == 0) ? ($range / 2) - 1 : ($range - 1) / 2;
    $range_max = ($range % 2 == 0) ? $range_min + 1 : $range_min;
    $page_min = $page_num- $range_min;
    $page_max = $page_num+ $range_max;
    $page_min = ($page_min < 1) ? 1 : $page_min;
    $page_max = ($page_max < ($page_min + $range - 1)) ? $page_min + $range - 1 : $page_max;
    if ($page_max > $numofpages) {
        $page_min = ($page_min > 1) ? $numofpages - $range + 1 : 1;
        $page_max = $numofpages;
    }
    $page_min = ($page_min < 1) ? 1 : $page_min;
    if ( ($page_num > ($range - $range_min)) && ($numofpages > $range) ) {
        $page_pagination .= '<a class="num"  title="First" href="'.$self.'page=1">&lt;</a> ';
    }
    if ($page_num != 1) {
        $page_pagination .= '<a class="num" href="'.$self.'page='.($page_num-1). '">Previous</a> ';
    }
    for ($i = $page_min;$i <= $page_max;$i++) {
        if ($i == $page_num)
            $page_pagination .= '<span class="num"><strong>' . $i . '</strong></span> ';
            else
            $page_pagination.= '<a class="num" href="'.$self.'page='.$i. '">'.$i.'</a> ';
    }
        if ($page_num < $numofpages) {
            $page_pagination.= ' <a class="num" href="'.$self.'page='.($page_num + 1) . '">Next</a>';
        }

        if (($page_num< ($numofpages - $range_max)) && ($numofpages > $range)) {
            $page_pagination .= ' <a class="num" title="Last" href="'.$self.'page='.$numofpages. '">&gt;</a> ';
        }
}
echo $page_pagination.'<BR><BR>';
echo 'Number of results - '.$numrows ;
echo ' and Number of pages   - '.$numofpages.'<BR><BR>';
$res2->closeCursor();

问题:

我做错了什么?我真的看不出有什么问题,但我总是得到这个错误:

注意:未定义变量:page_pagination

:

echo $page_pagination.'<BR><BR>';

它总是发生在不同的行,这取决于结果的数量,但要解决这个问题,我需要声明page_pagination = ";

我如何解决这个问题,是什么导致这个问题?

谢谢。

您的$offset被设置为1。最新的总是丢失,因为它是从1-10开始的,而不是0-9。索引从0开始。下面的代码应该可以工作。

$offset = ($rowsPerPage * $page_num) - $rowsPerPage;