Use a recordset with something like:
SELECT *, Month(yourDateColumn) AS theMonth, Year(yourDateColumn) as theYear, Day(yourDateColumn) AS theDay DATE_FORMAT(yourDateColumn,'%p') AS AMPMValue FROM yourTable
Then you should be able to set up filters for each of the columns based on the $_GET[] variables from your url.


