![]() |
Help me with pagination with query builder - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Help me with pagination with query builder (/showthread.php?tid=75909) |
Help me with pagination with query builder - seunex - 03-28-2020 Here is my model PHP Code: //* Get blog in admin And here is my controller PHP Code: $blog = new BlogModel(); I have over and over again read docs it could not give sample for query builder am totaly confuse. please any help is appreciated. RE: Help me with pagination with query builder - honghuy889 - 05-07-2021 PHP Code: public function postPaginate($where, $perPage = null, $group = 'default', $page = null, $segment = 0){ This is my model function ![]() |