Welcome Guest, Not a member yet? Register   Sign In
Multiple Pagination on the same page
#8

[eluser]peroperje[/eluser]
This is not codeigniter way ... but why not

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

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

$pagination_1=new CI_Pagination();
$pagination_1->initialize($config);
$view_data['pagination_link_1']=$pagination_1->create_links();


$config_2['base_url'] = 'http://example.com/index.php/test/page_2/';
$config_2['total_rows'] = 220;
$config_2['per_page'] = 25;

$pagination_2=new CI_Pagination();
$pagination_2->initialize($config_2);
$view_data['pagination_link_2']=$pagination_2->create_links();

....etc....


Messages In This Thread
Multiple Pagination on the same page - by El Forum - 01-05-2010, 06:41 PM
Multiple Pagination on the same page - by El Forum - 02-25-2010, 10:45 AM
Multiple Pagination on the same page - by El Forum - 04-01-2010, 08:54 AM
Multiple Pagination on the same page - by El Forum - 04-01-2010, 09:11 AM
Multiple Pagination on the same page - by El Forum - 04-02-2010, 01:31 AM
Multiple Pagination on the same page - by El Forum - 04-18-2012, 10:37 AM
Multiple Pagination on the same page - by El Forum - 07-15-2012, 09:56 PM
Multiple Pagination on the same page - by El Forum - 07-18-2012, 11:20 AM
Multiple Pagination on the same page - by El Forum - 01-25-2014, 07:22 PM



Theme © iAndrew 2016 - Forum software by © MyBB