About pagination - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6) +--- Forum: CodeIgniter 3.x (https://forum.codeigniter.com/forumdisplay.php?fid=17) +--- Thread: About pagination (/showthread.php?tid=1033) |
About pagination - rakibtg - 02-07-2015 I am using CI3 and the pagination is not working on the second page. Is that i am missing something? Here is my code from the controller: PHP Code: public function tags($task = "list") Everything seems ok, but when i click on the second link then empty view returned. RE: About pagination - Rufnex - 02-07-2015 Try to this without the / ... $pager['base_url'] = "/dashboard/tags"; RE: About pagination - rakibtg - 02-07-2015 Thankyou for your response, i tried with $pager['base_url'] = "/dashboard/tags"; but it doesn't work also i tried with full url with no success. RE: About pagination - Rufnex - 02-07-2015 What about $pager['base_url'] = "/dashboard/tags/list"; RE: About pagination - rakibtg - 02-07-2015 Many thanks @Rufnex for your time, you point me into the right direction. However shipping everything into a new method seems works just perfect! RE: About pagination - Rufnex - 02-07-2015 Glad to help you |