I have a MySQL table with a structure similar to this:
id1 id2 title url date
I would like to print out a simple table in PHP that with the following structure sorted in reverse chronological order for the most recent 10 entries (date above = date submitted) from the MySQL table:
title id2
How could I do this?