Okay, so I have a predefined date getting pulled from a database that looks like this: 2014-06-17
and I need to add 60 days to that specified day.
My code is as below: but it currently echoes out the same day for both result and accept.
What is wrong?
$result = $this->employment->verify($data);
echo $result.'<br/>';
$accept = date('Y-m-d', strtotime("+60 days", $result));
echo $accept.'<br/>';
return false;