CodeIgniter Forums
how to show all pages with pagination ? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: how to show all pages with pagination ? (/showthread.php?tid=51766)



how to show all pages with pagination ? - El Forum - 05-16-2012

[eluser]Unknown[/eluser]
Hi all,

I implemented my code with pagination function, it's work great. but i need to show all pages, no continue or previous link. can anyone suggest me ?

Thanks Big Grin


how to show all pages with pagination ? - El Forum - 05-16-2012

[eluser]Sanjay Sarvaiya[/eluser]
Hi,

You can do with
Code:
$config['num_links']
.

Code:
$config['total_rows'] = 500;
$config['per_page'] = 10;
$config['num_links'] = $config['total_rows']/$config['per_page'];
  
$this->pagination->initialize($config);