Hello
I am build pagination but its give me stuck.
admin_cont Controller Page
$this->load->library('pagination');
$config['base_url'] = "http://localhost/Job-portal-CI/admin_cont/search_me";
$config['total_rows'] = $this->db->get("admin_emp_job_description")->num_rows();
$config['per_page'] = 2;
$config['num_links'] = 20;
$this->pagination->initialize($config);
$data['records'] = $this->db->get('admin_emp_job_description',$config['per_page'],$this->uri->segment(3));
$this->load->view('admin_jobseeker/search_lists',$data);
View Page
<?php echo $this-> table-> generate($records); ?>
<?php echo $this->pagination->create_links(); ?>
Problem
Its give me Link but when click on Next or 2 then given me blank page
Any One can suggest me what can i do for next..
Thank$