Possible Duplicate:
How to find day of week in php
I want to get the day of the week of the selected date. For example 05/19/2011 = Thursday
Here's how to do it for the current time:
$day=strftime("%A",time());
Or for a specific date:
$day=strftime("%A",strtotime("2011-05-19"));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With