I have a demo table in a MySQL db with the following fields:
ID (int Auto)
Release_Date (Date)
Title (varchar)
and populated it with a few dummy records.
I have a php script that displays all of the records in this table. I need assitance executing a query that would ONLY display records if the current time is greater than the Release_Date.
For instance I would like to input records with a date of 12/25/2001 1300 PST.
And for this record to not show up before 1:00 PM on December 15, 2001.
Any help is greatly appreciated.
Many thanks,
Anthony