I would like to inform you what day falls every Friday, how do I do it? Then when it arrives next Friday it informs the other Friday and so on.
I would like to inform you what day falls every Friday, how do I do it? Then when it arrives next Friday it informs the other Friday and so on.
The function strtotime
allows you to generate dates from strings like "next Friday":
echo date('Y-m-d', strtotime('next Friday'));