1

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

假设我将限制设置为每页 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 = ''; 在整件事之前。

我该如何解决这个问题以及导致这个问题的原因是什么?

谢谢。

4

1 回答 1

2

您的 $offset 被设置为 1。最新的总是丢失,因为它的格式是 1-10 而不是 0-9。索引从 0 开始。以下应该有效。

$offset = ($rowsPerPage * $page_num) - $rowsPerPage;
于 2013-04-16T15:01:35.223 回答