How would one pull the images out in the reverse order? i.e. The last one in the database displayed first.
how to display image from database in reverse order
Collapse
X
-
Welcome to The Scripts!
Your post has been moved into a new thread, because the original thread had no longer any focus and your question did not really belong in there.
What is 'reverse' order here? You have one image (I imagine) in one row. So in order to pull them out say, in reverse order by name, you do the select with an ORDER BY field_name DESC.
Ronald -
You should have a field(`Time_Upl oaded`) in your table that is ON UPDATE CURRENT TIMESTAMP, and then do as Ron said and ORDER BY `Time_Uploaded` DESCOriginally posted by sebbemHow would one pull the images out in the reverse order? i.e. The last one in the database displayed first.
Regards.Comment
Comment