how do you add 10 days after today?
$today=gmdate("Y-m-d"); $day_30_s=102460; //10 days in sec $sec=strtotime($day1)+$day_30_s; echo "$sec<br>"; echo date("Y-m-d",mktime(0,0,$sec) );
this doesn't work 🙁
$day_30_s=102460*60; //10 days in sec
10 days 24 hours in a day 60 minutes in an hour 60 seconds in a minute
hth bastien
Increase date by 31 or whatever, just change 31
date('l, F dS, Y', time()+31243600);