Member Avatar for James singizi

i need help ordering my data from a database using time in ascending order.

Recommended Answers

All 2 Replies

You can set the order that the data comes in your query, example MySQL:

SELECT *
FROM `table`
WHERE `column` = "value"
ORDER BY `column` ASC
Member Avatar for James singizi

thanks it works

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.