分页类计算不正确

时间:2010-08-16 04:46:26

标签: php sql mysql pagination

我写了一个分页类,看起来它没有输出正确的行数。我有一个满51个记录的表,而它只显示30个记录,而且它只显示第1页的页面,它应该显示第1页和第2页。通过转到page = 1作为浏览器参数来查看页面。当我尝试查看page = 2时,我会看到其余的记录。这是班级。

include_once("class.db.php");

        class Pagination {

        var $param;
        var $perPage;
        var $adjacents;
        var $start;
        var $sql;
        var $pageName;


     function __construct() {

        $this->db = new  MysqlDB;
        $this->db->connect();
     }

        function setParam() {

            if(isset($_GET['page']) && is_numeric($_GET['page']) && ($_GET['page'] > 0)) {
                $this->param = $_GET['page'];
            } else {
                $this->param = 1;
            }
        }


        function setIndex() {
            $this->setParam();
            return $this->start = ($this->param * $this->perPage) - $this->perPage; 
        }

        function showPagination() {
            $qRows = $this->db->query($this->sql);
            $numRows = $this->db->num_rows($qRows);
            $numOfPages = ceil($numRows / $this->perPage);
            $param = $this->param;
            $pageName = $this->pageName;



            print "<div class='pagination'>";

            print "<a href='$this->pageName?page=1' class='previous-off'> First </a>";


            // ----------------------------------------------------------------------------     
                // PRINT ALL PAGES TO THE LEFT //
                if(($param - $this->adjacents) > 1) {
                    print "<span>...</span>";

                    $lowerLimit = $param - $this->adjacents;

                    //print all on left side.
                    for($i = $lowerLimit; $i< $param; $i++) {
                        print "<a href='$pageName?page=$param = $i'> $i </a>";
                    }



                    }  else {

                            //print all numbers between current page and  first page.

                            for($i = 1; $i < $param; $i++) {
                                print "<a href='$pageName?page=$i'> $i </a>";
                            }
                        }
            // ----------------------------------------------------------------------------



            //print current page
            if(($param != 0) && ($param != $numOfPages)) {
                print "<span class='current'>$param</span>";
            }




            // ----------------------------------------------------------------------------         
                        //PRINT ALL PAGES TO THE RIGHT
                    if(($param + $this->adjacents) < $numOfPages) {

                            $upperLimit = $param + $this->adjacents;

                            for($i=($param + 1); $i<=$upperLimit; $i++) {
                                print "<a href='$pageName?page=$i'> $i </a>";
                            }
                            print "<span>...</span>";
                        } else {

                            //print all page numbers if out of padded range

                            for($i = $param + 1; $i<$numOfPages; $i++ ) {
                                print "<a href='$pageName?page=$i'> $i </a>";
                            }

                        }
            // ----------------------------------------------------------------------------

            $lastPage = $numOfPages - 1;
            print "<a class='next' href='$pageName?page=$lastPage'> Last </li>";

            print "</div>";
        }





        function getData() {
            $query = $this->sql;
            $this->start = $this->setIndex();
            return "$query LIMIT $this->start, $this->perPage";
        }

    }

这就是我使用该类的方式:

$ db = new MysqlDB;     $ paginate = new Pagination;

$paginate->pageName = "index.php";  //sets the page to use
$paginate->perPage = 10; //show num of records per page
$paginate->adjacents = 3; //current page adjacent to 
$paginate->sql = "select * from tbl_products"; //the main query
$query = $db->query($paginate->getData());

while($row = mysql_fetch_object($query)) {
print $row->pName."<br/>";
}

$ paginate-&GT; showPagination(); //显示分页div

1 个答案:

答案 0 :(得分:0)

在函数setIndex中你必须写:

return $this->start = (($this->param - 1) * $this->perPage) - $this->perPage;  

因为查询应该如下所示:

第1页的

SELECT ... LIMIT 0,[nr_of_pages]

第2页的

SELECT ... LIMIT [nr_of_pages]*1,[nr_of_pages] ...