ali_p wrote:I can convert my dates to something like
Monday 12th August.
No reason to do this with PHP; MySQL can do that just fine:
SELECT DATE_FORMAT('%W %D %M', dateColumn) ...
EDIT: Just for reference, see DATE_FORMAT() in the MySQL manual for more info.