Welcome Guest, Not a member yet? Register   Sign In
Codeigniter pagination
#14

[eluser]ericrjones1[/eluser]
The third (3) uri_segment is set as the default uri_segment parameter of CI_Pagination class. So to have your pagination work correctly you need to set the uri_segment parameter to the dynamic pagination uri_segment

Code:
$config['uri_segment'] = 4

but also make sure that you are using the same uri_segment as part of your query offset

Code:
$data['foo'] = $this->foo_model->get_bar($config['per_page'], $this->uri->segment(4));

but just to make sure that you are cleaning and appropriately handling the incoming data from $this->uri->segment(4) because that is basically a $_GET variable


Messages In This Thread
Codeigniter pagination - by El Forum - 10-26-2009, 11:30 PM
Codeigniter pagination - by El Forum - 10-26-2009, 11:37 PM
Codeigniter pagination - by El Forum - 10-27-2009, 12:47 AM
Codeigniter pagination - by El Forum - 10-27-2009, 04:14 AM
Codeigniter pagination - by El Forum - 10-27-2009, 05:22 AM
Codeigniter pagination - by El Forum - 10-27-2009, 05:28 AM
Codeigniter pagination - by El Forum - 10-27-2009, 05:47 AM
Codeigniter pagination - by El Forum - 10-27-2009, 05:50 AM
Codeigniter pagination - by El Forum - 10-27-2009, 05:53 AM
Codeigniter pagination - by El Forum - 10-27-2009, 05:58 AM
Codeigniter pagination - by El Forum - 10-27-2009, 06:08 AM
Codeigniter pagination - by El Forum - 10-27-2009, 06:09 AM
Codeigniter pagination - by El Forum - 10-27-2009, 06:16 AM
Codeigniter pagination - by El Forum - 11-04-2009, 02:40 PM
Codeigniter pagination - by El Forum - 11-04-2009, 02:46 PM



Theme © iAndrew 2016 - Forum software by © MyBB