Posts by Carlos Daniel • 1 point
1 post
-
0
votes2
answers67
viewsA: How do I get records from my database in ascending order(of id), but I want it to take one by one
Just after the "id_question" in the $sql statement in the fourth line, remove the "LIMIT 1" and add the ASC sorter, so that your data comes from the database in ascending order. Before:$sql =…