php对mysql查询结果进行分页

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
   function pageSplit($startPos, $rowsPerPage = '', $totalRows = '' )
        {
  
            $numPages = $totalRows / $rowsPerPage ;
            $tenthPages = $rowsPerPage * 10 ;
            If($startPos >= $tenthPages )
            {
                $back10Position = $startPos - $tenthPages ;
                $pageString .= '<a href="'.$PHP_SELF.'?startPos='.$back10Position .'&perPageDisplay='.$rowsPerPage.'" title="Previous 10 Pages"><font color="red"><< </font></a>  ';
            }
  
            if($startPos >= $rowsPerPage)
            {
                $backPosition = $startPos - $rowsPerPage;
                $pageString .= '<a href="'.$PHP_SELF.'?startPos='.$backPosition.'&perPageDisplay='.$rowsPerPage.'" title="Previous Page"><font color="blue">Back</a></font> ';
            }
                   
            if($totalRows != '')
            {
                     $page = ceil($startPos / $rowsPerPage);
                     $pageCount = $page + $numPages;
  
                    $PageNo = ceil($startPos / $rowsPerPage )  ;
                    // echo ' Page No ' . $PageNo ;
                    for($i = 1,$pgCnt=1; $page <= $pageCount; $i = $i + $rowsPerPage)
                    {
                        if ( $PageNo == $pgCnt )
                        {
                            $pageString .= ' <a href="'.$PHP_SELF.'?startPos='.$i.'&perPageDisplay='.$rowsPerPage.'" title="Page '.$pgCnt.'""><font color="red"><b>'.$pgCnt.'</b></font></a> ';
                            $pgCnt++;
                        }
                        elseif ($i < $totalRows)
                        {
                            $pageString .= ' <a href="'.$PHP_SELF.'?startPos='.$i.'&perPageDisplay='.$rowsPerPage.'" title="Page '. $pgCnt.'"">'.$pgCnt.'</a> ';
                            $pgCnt++;
                        };
                           
                        $page++;
                    };
            }
  
            $nextPosition = $startPos + $rowsPerPage;
  
            if($totalRows == '')
            {
                $pageString .= '<a href="'.$PHP_SELF.'?startPos='.$nextPosition.'&perPageDisplay='.$rowsPerPage.'" title="Next Page"><font color="blue" >Next </font></a> ';
            }
            elseif($startPos < $totalRows )
            {
                If ( $nextPosition < $totalRows )
                {
                    $pageString .= '<a href="'.$PHP_SELF.'?startPos='.$nextPosition.'&perPageDisplay='.$rowsPerPage.'" title="Next Page"><font color="blue" title="Next Page">Next </font></a>  ';
                }
            }
  
            if($startPos < $totalRows )
            {
                $next10Position = $startPos + $tenthPages ;
  
                If($next10Position < $totalRows )
                {
                    $next10Position = $startPos + $tenthPages ;
                    $pageString .= '<a href="'.$PHP_SELF.'?startPos='.$next10Position .'&perPageDisplay='.$rowsPerPage.'" title="Next 10 Pages"><font color="red"> >></font></a>';
                }
            }
                return $pageString;
        }
?>