I am volunteering to create a website for a non-profit that has a meeting on the first Monday of every month. I was hoping to create PHP code that would return the date of the "Next First Monday of the Month".
<?php echo date("d-M-Y", strtotime("next first monday of the month"));?>
This works if the current date is AFTER the first Monday of the month, by showing next month's first Monday. But if the current date is BEFORE the first Monday of the month, it still shows next month's first Monday.