Hello!! Is there a date function that will convert the mysql date format of yyyy-mm-dd to mm-dd-yyyy.Tracy🙂
DATE_FORMAT
i use this function:
function formatDate($date) { $newDate = strftime("%d-%m-%Y", strtotime($date)); return $newDate; }