Installer wrote:You'd be better off building and storing dates as "yyyy-mm-dd"
Actually... Just use a date, or date-time colum in mysql, which will store the date as a unix timestamp in the database, and just format whichever way you prefer when you retrieve it, using dateformat: DATE_FORMAT(DATECOLUM, '%Y %M %d')
And, yes, if you do not want to delete anay, just do the
select from table where unix_timestamp(DATECOLUM) > curr_date()
J
edit
I think it is actually now() and not curr_date. Have a look at the timefunctions mentioned before in the thread
/edit