ThinkPHP Pagination_PHP Tutorial

WBOY
Release: 2016-07-13 17:45:44
Original
902 people have browsed it

1.下载官方有例子的包,然后找到例子下面的Page例子。
2. 找到Page.class.php,复制到你自己的项目ThinkPHP/Lib/Think/Util下面。
3.
Php代码 
public function doPage(){ 
        //echo $_GET["p"]; 
        if(emptyempty($_GET["p"])) 
            $this->assign('p', 1); 
        else  
            $this->assign('p', $_GET["p"]); 
        $Nav = M("navigation"); 
        $count = $Nav->count(); 
        import("ORG.Util.Page"); 
        $p = new Page($count, 10); 
        $page = $p->show(); 
        $list = $Nav->order('Id ASC')->limit($p->firstRow.','.$p->listRows)->select(); 
         
        $this->assign('page', $page); 
        $this->assign("list",$list); 
    } 

4.
Php代码 

{$page}
 
               
                 
                   
                   
                   
                   
                   
                   
                   
                   
                 
                 
                     
                         
                           
 
                               
                               
                               
                               
                               
                               
                               
                               
                             
                         
                         
                           
 
                               
                               
                               
                               
                               
                               
                               
                               
                             
                         
                     
                 
             
ID描述路径备注级别父导航Id编辑删除
{$vo.Id}{$vo.description}{$vo.addr}{$vo.remarks}{$vo.level}{$vo.parsentId}EditDelete
{$vo.Id}{$vo.description}{$vo.addr}{$vo.remarks}{$vo.level}{$vo.parsentId}EditDelete
 
             
{$page}
 

作者“pyzheng”
 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478627.htmlTechArticle1.下载官方有例子的包,然后找到例子下面的Page例子。 2. 找到Page.class.php,复制到你自己的项目ThinkPHP/Lib/Think/Util下面。 3. Php代码 public f...
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!