Skip to content
Advertisement

CodeIgniter application 3 bug: pagination does not render properly for search results?

I am working on a online newspaper/blogging application with CodeIgniter 3.1.8 and Bootstrap 4.

I have separated the application’s back-end (dashboard) from its front-end and used Twig for the front-end views and adding theming.

I thought it was a good idea to add a search functionality for the back-end, for ease of navigating through one’s own posts (articles).

In my Posts controller (applicationcontrollersdashboardPosts.php) I have:

JavaScript

In the Posts_model model I have this for the list of posts posts:

JavaScript

The the view (posts.php):

JavaScript

While all the posts are paginated well, strangely, the search results are not paginated well: when for instance I do a search that returns 11 results, that should be displayed on two pages, the pagination shows all the pages instead of two.

enter image description here

I have not been able to figure out why.

Where is my mistake?

Advertisement

Answer

While all the posts are paginated well, strangely, the search results are not paginated well: when for instance I do a search that returns 11 results, that should be displayed on two pages, the pagination shows all the pages instead of two.

Because you use all rows count in total_rows config: $config['total_rows'] = $this->Posts_model->get_num_rows(); In the search function you need to use the count of search result: Number of rows from this result WITHOUT!!! $limit, and $offset:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement