Welcome Guest, Not a member yet? Register   Sign In
How to set Pagination in order to redirect the page to the same url ?
#2

[eluser]n0xie[/eluser]
Why do you use Query String in your URL? It's much easier to do this:

Code:
function index()
{
    $this->page();
}

function page($offset = 0)
{
        $limit = 2;
        // this should really be a model where you can give the offset and the limit
        $totalrows = $this->db->count_all(‘entries’);

        $config['base_url'] = site_url('nameofyourcontroller/page');
        $config['total_rows'] = $totalrows;
        $config['per_page'] = $limit;
        $this->pagination->initialize($config);

}


Messages In This Thread
How to set Pagination in order to redirect the page to the same url ? - by El Forum - 09-07-2009, 03:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB