Welcome Guest, Not a member yet? Register   Sign In
Using Pagination Library
#3

(01-04-2022, 08:19 AM)captain-sensible Wrote: I just use pagination via model ; what i can't see in yours anywhere is including 

Code:
->paginate(10);

I'm aware of this. But the problem is that you can't paginate results of a query builder. If you do something like this:

PHP Code:
$query_posts $db->query("SELECT * FROM posts ORDER BY created_at DESC")->paginate(3); 

the following error will be raised: Call to undefined method CodeIgniter\Database\SQLite3\Result::paginate().

I don't want to use the <post> model to retrieve records from database. In other words: Is it possible to paginate the results of a query builder?
Reply


Messages In This Thread
Using Pagination Library - by cifan - 01-03-2022, 11:07 AM
RE: Using Pagination Library - by cifan - 01-04-2022, 12:35 PM
RE: Using Pagination Library - by iRedds - 01-04-2022, 05:29 PM
RE: Using Pagination Library - by BilltheCat - 01-05-2022, 12:41 PM



Theme © iAndrew 2016 - Forum software by © MyBB