Welcome Guest, Not a member yet? Register   Sign In
problems with paging using Modular Extensions
#2

[eluser]Sanjay Sarvaiya[/eluser]
Try this.
Code:
$this->load->library('pagination');

$config['base_url'] = 'http://example.com/index.php/test/page/';
$config['total_rows'] = 200;
$config['per_page'] = 20;
$config['uri_segment'] = 3;
$config['full_tag_open'] = '<p>';
$config['full_tag_close'] = '</p>';
$config['cur_tag_open'] = '<b>';
$config['cur_tag_close'] = '</b>';

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

echo $this->pagination->create_links();
Hope that helps.


Messages In This Thread
problems with paging using Modular Extensions - by El Forum - 05-16-2012, 05:59 AM
problems with paging using Modular Extensions - by El Forum - 05-16-2012, 11:29 PM
problems with paging using Modular Extensions - by El Forum - 05-17-2012, 04:53 AM



Theme © iAndrew 2016 - Forum software by © MyBB