function FormatDate($theDate,$format="d/m/Y") { $date=date_create($theDate); return date_format($date,$format); }