Display day of week from date [RESOLVED]
I have a list of dates in the following format:
14/Jun/2003
18/Jul/2003
09/May/2003
...
This list will keep continuing to grow so it can not be hard coded.
I would like to be able to determine from this date format what the day of the week it is (Mon, Tues, Wed, etc...). Is this even possible? I know that if I had the month in a numberic value I could use:
getdate(mktime(0,0,0,$month, $day, $year)).
My second question would be then, Is it possible to convert a month, Jul to 07?
Thanks for the help in advance.