Thanks for your reaction.
The problem is; I have stored the dates in a varchar(20) field. (and there are now 4495 articles already in the database).
Do you have any suggestions to convert these dates to values so I can run queries like:
select * from articles where submitdate >= '2001-05-01' && submitdate <= '2001-05-31';
Kind regards,
Marco
Ps.: I already tried to change varchar to date in the mysql admin but because the dates are stored in the format:
echo date("F d, Y"); "May 06, 2001"
it doesn't covert well I get 0000-00-00 in all felds (of course I tried this on a copy of the table)