strtotime, exactly what I was looking for. I knew there had to be something. Sure beats having to write a custom function, considering I have 10 mins left until demo time.
Thanks for the help ... very very much appriciated.
EDIT: Though I would post the code for others to view. Quite simple once you know what function to use. (tnx again).
//$data[3] is mysql result for date field
$sample = date("F j, Y", strtotime($data[3]));
echo $sample;