I have a database in mySQL w/date formatted like YYYY-MM-DD. Is there any reasonably simple way to have this reformat when dispalyed on my php page to be in the format of :
Day of Week, Month Day, Year?
Thanks for any and all help.
Ok, watch this:
$mysqldate = "2002-01-30"; echo strftime("%A, %B %e, %Y",strtotime($mysqldate));
Check the manual page for strftime for tons of other ways to format the date....
Matt Wade codewalkers.com