Hi there TheLazyAce,
This is more of an mysql question because the formatting is done when the query is executed. You need to use the
DATE_FORMAT() [dev.mysql.com] function when constructing the query so that the returned data is in your preferred style.
Example: %W - Full weekday name
%D - Day of the month with English suffix (1st, 2nd)
%M - Full month name
%Y - Year, numeric, four digits
date_column - the column name in the db
formatted_data - temporary name for storing
$sql = "SELECT `somename` DATE_FORMAT(`date_column`, "%W %D %M %Y") AS `formatted_data` FROM `atablename` WHERE ......";
What happens is you reformat the time given according to the new format you have stipulated, this then gets assigned via the AS instruction to the temporary variable - this is then the name you reference when retrieving the data during the _fetch_array() or _fetch_object() loop.
Hopefully you can see where to go from there.
Good luck!
Cheers,
MRb