|
代码:
$this->load->library('pagination');
$this->load->helper('url');
$config['base_url'] = base_url().'index.php/book/book/index';
$config['total_rows'] = $this->db->count_all('book');
$config['per_page'] = 3;
$config['uri_segment'] = 1;
$config['num_links'] = 3;
$config['underline_uri_seg'] = 1;
$this->pagination->initialize($config);
$data['page'] = $this->pagination->create_links();
$data['title'] = '我的留言本';
$data['book'] = $this->book_model->show(FALSE,$config['per_page'],$this->uri->segment(4));
第一次下一页 就是数字2 在点击还是数字2
|
|