The date() function in php returns the current time and date, for example
date('l jS F');
would return
Tuesday 24 September
In a calendar app i'm buiding, I would like to display seven dates, starting from the current day: Tuesday 24 September, Wednesday 25 September, ... Monday 30 September
is there an easy way to do this with date()? If not, is it possible to somehow add one day to a date?
Thanks for help