Welcome Guest, Not a member yet? Register   Sign In
Pagination - Need Help
#2

[eluser]pickupman[/eluser]
You need to change your uri segment in your pagination config. You are using the 3rd segment for the offset set, so you would need:
Code:
function configure($base_url, $total_rows, $per_page, $segment ='2')
{
$config = array
    (
    'base_url' => $base_url,
    'total_rows' => $total_rows,
    'per_page' => $per_page,
    'uri_segment' => $segment
    );
$this->pagination->initialize($config);
}

And then pass 3 as the fourth parameter to your configure function.


Messages In This Thread
Pagination - Need Help - by El Forum - 04-19-2010, 08:19 PM
Pagination - Need Help - by El Forum - 04-19-2010, 09:40 PM
Pagination - Need Help - by El Forum - 04-19-2010, 09:56 PM



Theme © iAndrew 2016 - Forum software by © MyBB