how to get the date of first monday of the current year using php functions
example 04-01-2010
how to get the date of first monday of the current year using php functions
example 04-01-2010
Just change the format as wanted :)
<php
echo date("d m y", strtotime("first monday of 2010"));
?>