Welcome Guest, Not a member yet? Register   Sign In
is pagination automatic?
#3

[eluser]philm[/eluser]
Snippet from one of mine if it helps make it a little clearer... ;-)
Code:
$data['pagination'] = $this->pagination->create_links();

// get paginated results
$num = $config['per_page'];
$offset = $this->uri->segment(3);
$this->pagination->initialize($config);
$data['rows'] = $this->Categories->getPaginated($num, $offset);

$this->load->view('vw_viewCategories', $data);


Messages In This Thread
is pagination automatic? - by El Forum - 07-23-2009, 11:32 AM
is pagination automatic? - by El Forum - 07-23-2009, 12:07 PM
is pagination automatic? - by El Forum - 07-24-2009, 10:15 AM



Theme © iAndrew 2016 - Forum software by © MyBB