I have a fixed date from MySql
startDate = 07/03/2011
I wanted to add 60 days on top this date to have an endDate.
$startDa
$startDate = "07/03/2011"; $endDate = strtotime("+60 days",time($startDate)); $formatted = date('m/d/Y',$endDate); echo $endDate . "" . $formatted;