Okay, so I wrote a simple blogging script that loads a UNIX timestamp into a database. The PHP script then reads the timestamp, converts it to a readable format, and displays it on a page. All that stuff has been no problem.
My problem is that I want to be able to read these entries from an archive. Like a calendar script on the side where the days that I've posted are highlighted, or at the very least have a link on the side that says "April 2005" as a link to display every post I made in April of 2005.
Of course, this is easy if I made 1 row per date variable (like month, day, year, etc.). As a UNIX timestamp, it makes my code and database table cleaner, but is it possible for a script to read that UNIX timestamp from the database and sort it as I've outlined?
Any input would be much appreciated.