Skip to content
Advertisement

Queries in multiple loop and Ordering by id of last query

I have two while loops and two queries in the loops.

I must order posts as DESC by its IDs. But posts loop is under another query’s loop.

JavaScript

This method is ordering posts depending on ID numbers of the follows table. I want to order posts as DESC for only IDs of posts. How can I fix this?

Advertisement

Answer

I think that you might be overcomplicating this. If you want a single dataset, then you should use a single, joined query. You can execute it once, and then loop over the results with php:

JavaScript

Note that I left the select clause empty. You should really enumerate the columns that you want (and, if needed, alias them to avoid conflicts) rather than use *: this way, the structure of the resultset is explicit .

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