Just to clear up any confusion
$query = mysql_query("SELECT *, DATE_FORMAT(date_field, '%m/%d/%Y') AS thedate FROM your_table") or die(mysql_error());
while($row = mysql_fetch_assoc($query)) {
// print the date
echo $row["thedate"] . "<br>";
}
This will return the records into an array called $row, which you can then access using the associative array -> $row["thedate"] also make sure to replace date_field with the date field in your database.
Cgraz