2
Colleagues,
How would I get to pick up the week of a given month? For example: if next week the user accesses the system (today is day 18/11/16), would appear:
Current week: day 20/11/2016 to 27/11/2016
I accept suggestions in PHP, Jquery or Javascript.
Thank you
Would that be ?
date('d-m-Y', strtotime("+1 week"));
– Mauro Alexandre