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.
$startDate = $result['startDate'];
$endDate = ??? + strtotime("+60 days");
echo $endDate;
From my research, I know it has something do with strtotime, but all the sites I come across with based the start date from current workstation's time. My date is already fixed and entered prior to running and getting the endDate.
Help? Thanks in advance!
In addition to PHP solutions others are providing, you can create the
endDate
right inside of MySQL and save yourself some of the trouble:Relevant documentation here...
86400 seconds in a day, times number of days.. and add it to current time.
You could reformat the results of
strtotime()
Demo: http://codepad.org/9rWnoeQb