Skip to content
Advertisement

What causes this failure to get the data from the next row in a MySQL table, with Codeigniter 3?

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

At the bottom of the single post view, I want to add a link to the next post (as well as one to the previous post). For this, I need to get the data (slug, title, etc), of the next post (row in the posts table).

For this purpose, I have added this method to my Posts_model model:

JavaScript

In the controller I have:

JavaScript

EDIT: In the Posts_model, I now have:

JavaScript

That means that if I could get the current post’s index by slug, I could replace this hardcoded index of the 7th post – $row_index = 6 – and the problem would be solved.

How do I do that?

Advertisement

Answer

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