首先,要查詢資料庫,確定一共有多少條資料
$this->load->model('test_model'); $user=$this->test_model->user_select_all(); $pageall=count($user);//总条数 $pagenum=20;//每页显示的条数
其次,進行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中的数字显示第几页,否则,显示到达第几条