Hello,
I have a entry in my database in the form of "2001-01-30" and I when I use that date I want the output to be in the form of
"Monday January 01, 2001"
I tried the date() function, with the proper format strings and tried to use the date entry ("2001-01-30") in my database as the timestamp... however, that doesn't work.
I figure that I would just use arrays with every month and day of the week to the get "January 01, 2001" part, but how do I get the proper day of the week?
Is there a function or method to do what I need to have done? How else should I store a date in a mysql database?