I decided to use the substr() function to accomplish this, since it was an easy fix.
$dateCreated = "2007-01-01 12:34:55";
$year = substr($row['dateCreated'],0,4);
$month = substr($row['dateCreated'],5,-12);
$day = substr($row['dateCreated'],8,-9);
$thedate = $month."/".$day."/".$year;