Home » CodeIgniter »

1

In this i would like to explain about how to set the pagination in codeigniter framework. See the code below: to set the pagination in CodeIgniter
 

In the controller: add the below code

1
2
3
4
5
6
7
8
9
10
 $this->load->library('pagination');
 $config['total_rows'] = $this->db->count_all('code_image');
 $config['per_page'] = '3';
 $config['full_tag_open'] = '<p>';
 $config['full_tag_close'] = '</p>';
 $config['base_url'] = base_url().'upload/list_images/';
 $this->pagination->initialize($config);
 //echo base_url();
 $this->load->model('code_image');
 $data['images'] = $this->code_image->get_images($config['per_page'],$this->uri->segment(3));

 

In the View: add the below code

1
<?php echo $this->pagination->create_links(); ?>

Note : It will only display the 3 images per page.
 
 


Related Posts

    Understanding the basic need of MVC architectureWhat is CodeIgniter,how to install in local system?How to create database connection using codegniter?How to configure the baseurl in CodeIgniter

 

1 Comment

  1. Hetal says:

    This will definitely be helpful. Thanks.

Leave a Reply