![]() |
Pages - 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: Pages (/showthread.php?tid=16588) |
Pages - El Forum - 03-11-2009 [eluser]Fr3aked0ut[/eluser] Hi, I want to make pages in some page. I mean, let's say I got 100 posts in 'POSTS' section, I want to share them to 5 pages, 20 posts in each page. Usually, I would do: www.example.com/?section=some&page=2 But now, in CodeIgniter it's impossible because these characters are disabled. What should I do? Pages - El Forum - 03-11-2009 [eluser]GSV Sleeper Service[/eluser] use uri segments. www.domain.com/section/some/page/2 Pages - El Forum - 03-11-2009 [eluser]pistolPete[/eluser] Have a look at the pagination library: http://ellislab.com/codeigniter/user-guide/libraries/pagination.html |