You can either format the date in your MySQL query or with PHP.
In MySQL, you'll need the DATE_FORMAT() function.
http://www.mysql.com/doc/en/Date_and...functions.html
SELECT DATE_FORMAT(date_col, '%d %m %y')
FROM table_name
You can do it in PHP using regular expressions. Take a look at preg_replace()
http://www.php.net/preg_replace
Also, you can convert the MySQL date to a unix timestamp, and then convert that timestamp to a date format of your choosing. PHP's date() function is similar to MySQL's DATE_FORMAT().
http://www.php.net/strtotime
http://www.php.net/date
date('d m y', strtotime($mysql_date));
Take care,
Nik
http://www.bigaction.org/