well, i am writing this script similar to news script
Every entry in the table (mysql database) has a an int column that holds an unix timestamp (generated by php).
Now, what I want to do is, display the news articles by date on the site.
Like for example:
17th May 2005
First news
Second News
16th May 2005
First news
second news.
Now, there might not be any news posted in some days, and it'll display all the news at once.
How do I acomplish that?
Thanks.