Fix me if Im wrong, but I dont think that MySQL can handle dates any other way. You could just replace that date with a timestamp(in Epoch Form), ie: 986371200 then you could convert it later in PHP using the date() function...
like this:
//here you would get the info from your DB
$date = "986371200";
$mdy = date("m/d/y", $date);
//PHP will then convert your epoch time into m/d/y or what ever else you need.
Just to explain for you non unix users, Epoch time is the number of seconds elapsed since December 31, 1969. This is helpful because it contains all sorts of data,
month, date, day, year, hours, minutes, seconds, etc...
Hope this helps.
Brad Taylor
Senior Web Producer
BradCom Industries LTD
brad_at_getcoded.net(replace the at with @)