what he said - alternatively you can use INT fields to store dates as system timestamps (number of seconds since beginning of unix epoch)
That way you can also easily do date math by adding or subtracting seconds (86400 per day) to the stored value
$timestamp = mktime()
You only need to convert the timestamp on screen output
date("d M Y",$timestamp) will be dd Mmm yyyy format....