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
You could reformat the results of strtotime()
strtotime()
$startDate = $result['startDate']; // 07/03/2011 $endDate = date("m/d/Y", strtotime("$startDate +60 days"));
Demo: http://codepad.org/9rWnoeQb