Welcome Guest, Not a member yet? Register   Sign In
Pagination automated
#18

[eluser]seeraw[/eluser]
Hi everyone,
Great!!!
and here is the complete working stuff no need to change any file
Write this code in your controller.

$arr['cnt']=$this->login_model->getAllCastChar();
$this->load->library('pagination');
$config['base_url'] = site_url().'HERE IS YOUR CONTROLLER NAME';
$config['total_rows'] = count($arr['cnt']);
$config['per_page'] = '10';
$config['num_links'] = 4; // IT MAY VARY
$config['full_tag_open'] = '<p>';
$config['full_tag_close'] = '</p>';
$config['uri_segment'] = '4';
$this->pagination->initialize($config);
$arr['data']=$this->login_model->getAllCastCharAdmin($config['per_page'],$this->uri->segment(4));
$this->load->view('VIEW NAME',$arr);


Messages In This Thread
Pagination automated - by El Forum - 07-27-2008, 12:07 PM
Pagination automated - by El Forum - 07-27-2008, 12:13 PM
Pagination automated - by El Forum - 07-27-2008, 12:39 PM
Pagination automated - by El Forum - 08-31-2008, 07:40 PM
Pagination automated - by El Forum - 09-01-2008, 12:19 AM
Pagination automated - by El Forum - 10-07-2008, 05:36 AM
Pagination automated - by El Forum - 12-21-2008, 07:05 AM
Pagination automated - by El Forum - 01-03-2009, 08:42 PM
Pagination automated - by El Forum - 05-30-2009, 10:17 AM
Pagination automated - by El Forum - 05-30-2009, 10:29 AM
Pagination automated - by El Forum - 06-01-2009, 07:43 AM
Pagination automated - by El Forum - 10-25-2009, 06:27 PM
Pagination automated - by El Forum - 01-02-2010, 06:42 AM
Pagination automated - by El Forum - 01-07-2010, 08:37 AM
Pagination automated - by El Forum - 10-31-2010, 10:02 PM
Pagination automated - by El Forum - 01-05-2011, 04:33 AM
Pagination automated - by El Forum - 02-22-2011, 02:14 AM
Pagination automated - by El Forum - 02-22-2011, 03:59 AM
Pagination automated - by El Forum - 05-10-2013, 11:42 AM
Pagination automated - by El Forum - 07-17-2013, 11:42 PM
Pagination automated - by El Forum - 01-12-2014, 12:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB