Welcome Guest, Not a member yet? Register   Sign In
Pagination Problem: First and previous are not displayed
#8

[eluser]InsiteFX[/eluser]
You should be building the config in your controller like so, then pass it in.

Code:
var $config = array();

    $this->load->library('pagination');

    $config['base_url'] = 'http://example.com/index.php/test/page/';
    $config['total_rows'] = '200';
    $config['per_page'] = '20';

    $this->pagination->initialize($config);

    echo $this->pagination->create_links();

Enjoy
InsiteFX


Messages In This Thread
Pagination Problem: First and previous are not displayed - by El Forum - 12-09-2009, 03:21 PM



Theme © iAndrew 2016 - Forum software by © MyBB