well you could hang with Diego and call the PHP date() function over and over and over again.
...or...
Have the database do it for you.
$sql = "SELECT DATE_FORMAT(date_field_name,/%m/%d/%Y') as fDate FROM myTable";
now just call fDate from your MySQL result set.