Home > php教程 > PHP开发 > body text

Use of CI framework paging class (1)

黄舟
Release: 2016-12-29 09:45:37
Original
1429 people have browsed it

First, query the database to determine how many pieces of data there are

$this->load->model('test_model');
$user=$this->test_model->user_select_all();
$pageall=count($user);//总条数
$pagenum=20;//每页显示的条数
Copy after login

Secondly, configure config

$config['total_rows']=$pageall;
$config['per_page']=$pagenum;
$config['num_links']=3;//定义当前页面的前后各有几个数字链接
$config['base_url']="
http://localhost/CodeIgniter_2.1.3/index.php/pages/pagelist/
";
$config['use_page_numbers']=true;//URL中的数字显示第几页,否则,显示到达第几条
Copy after login



##Finally, load the paging class and call

$this->load->library("pagination");//载入
$this->pagination->initialize($config);//初始化配置
echo $this->pagination->create_links();//显示<1 2 3 4.....>这样的页数选择
echo "
";
$id=$id?$id:1;
$start=($id-1)*$pagenum;
$list=$this->test_model->user_select_limit($start,$pagenum);//每一页的内容
var_dump($list);
Copy after login

The above is the content of the CI framework paging class (1). For more related content, please pay attention to PHP Chinese website (m.sbmmt.com)!



Related labels:
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 Recommendations
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!