分页查询问题

时间:2010-10-06 09:45:08

标签: php

这是我的分页代码:

function getPagingQuery($sql, $itemPerPage = 10)
{
    if (isset($_GET['page']) && (int)$_GET['page'] > 0) {
        $page = (int)$_GET['page'];
    } else {
        $page = 1;
    }

    // start fetching from this row number
    $offset = ($page - 1) * $itemPerPage;

    return $sql . " LIMIT $offset, $itemPerPage";
}

function getPagingLink($sql, $itemPerPage = 10, $strGet ="")

{
    $result        = dbQuery($sql);
    $pagingLink    = '';
    $totalResults  = dbNumRows($result);
    $totalPages    = ceil($totalResults / $itemPerPage);

    // how many link pages to show
    $numLinks      = 10;


    // create the paging links only if we have more than one page of results
    if ($totalPages > 1) {

        $self = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'] ;


        if (isset($_GET['page']) && (int)$_GET['page'] > 0) {
            $pageNumber = (int)$_GET['page'];
        } else {
            $pageNumber = 1;
        }

        // print 'previous' link only if we're not
        // on page one
        if ($pageNumber > 1) {
            $page = $pageNumber - 1;
            if ($page > 1) {
                $prev = " <a href=\"$self?page=$page&$strGet/\">[Prev]</a> ";
            } else {
                $prev = " <a href=\"$self?$strGet\">[Prev]</a> ";
            }    

            $first = " <a href=\"$self?$strGet\">[First]</a> ";
        } else {
            $prev  = ''; // we're on page one, don't show 'previous' link
            $first = ''; // nor 'first page' link
        }

        // print 'next' link only if we're not
        // on the last page
        if ($pageNumber < $totalPages) {
            $page = $pageNumber + 1;
            $next = " <a href=\"$self?page=$page&$strGet\">[Next]</a> ";
            $last = " <a href=\"$self?page=$totalPages&$strGet\">[Last]</a> ";
        } else {
            $next = ''; // we're on the last page, don't show 'next' link
            $last = ''; // nor 'last page' link
        }

        $start = $pageNumber - ($pageNumber % $numLinks) + 1;
        $end   = $start + $numLinks - 1;        

        $end   = min($totalPages, $end);

        $pagingLink = array();
        for($page = $start; $page <= $end; $page++)    {
            if ($page == $pageNumber) {
                $pagingLink[] = " $page ";   // no need to create a link to current page
            } else {
                if ($page == 1) {
                    $pagingLink[] = " <a href=\"$self?$strGet\">$page</a> ";
                } else {    
                    $pagingLink[] = " <a href=\"$self?page=$page&$strGet\">$page</a> ";
                }    
            }

        }

        $pagingLink = implode(' | ', $pagingLink);

        // return the page navigation link
        $pagingLink = $first . $prev . $pagingLink . $next . $last;
    }

    return $pagingLink;
}
我称之为:

$sql = "something";
$result     = mysql_query(getPagingQuery($sql, $rowsPerPage));  
$pagingLink = getPagingLink($sql, $rowsPerPage, $url);

现在,如果我的网址是

http://xyz/abc/list.php它的工作正常。

但是我的网址就像

http://xyz/abc/list.php?action=def

点击第2页后,网址会更改为http://xyz/abc/list.php?page2&

'action = def'部分消失了,结果发生了变化。

如果我使用$ strGet中的值作为$ _SERVER ['QUERY_STRING']

第一次就像http://xyz/abc/list.php?page2&action=def

一样

但从第2次起,它就像http://xyz/abc/list.php?page3&page2&action=def

一样

所以没有得到理想的结果。

而我希望它像http://xyz/abc/list.php?page3&action=def

plz help .. thanxx提前

3 个答案:

答案 0 :(得分:2)

所以我认为你使用$ _GET ['page'] ^^

$_GET['page']=$page;


$url = 'http://xyz/abc/list.php?';

foreach($_GET as $key=>$param) {

$url.=$key.'='.$param.'&';

}

答案 1 :(得分:0)

使用http_build_query()代替$_SERVER['QUERY_STRING']

答案 2 :(得分:0)

在设置$ page = url代码之前,我要做的是。我会在设置之前和之后首先回显$ page。这样我才能确切地看到价值观。我会在每次使用url设置$ page之前和之后打印echo语句,以确保它是正确的。如果在任何地方你可以看到它不是所需的输出,因为你可以从echo语句中看到,那么你可以做出正确的更改,以确保正确设置$ page变量。 然后我要做的就是正确设置它是清楚$ page变量并确保然后使用url新设置$ page变量。

同样在设置url时,请确保首先回显$ strGet变量,以确保它是您想要设置的正确值。然后将url设置为$ page变量。

通过这种简单的调试,您可以确保所有值都是正确的,并且在设置之前就知道它是正确的。

试一试 让我知道发生什么事 的 PK