You can format Date by using the below function
This function will be helpful for formatting the date after obtaining the date from MYSQL , or if you need to display the user a formatted date...
function Formatdate($rawdate,$format){
/*
$rawdate - The Date which should be formatted...
$format - The format string....
refer the Date function for format String
*/
$dateTime = new DateTime($rawdate);
$formatted_date=date_format ( $dateTime, $format );
return $formatted_date;
}