im try to increase days(60) in m-d-Y but it is calculate wrong day. it is consider it as d-m-y format.
echo "Today is :: ".date("m-d-Y");
echo "\n";
echo $DateEnd = date('m-d-Y', strtotime(date("m-d-Y") . ' +60 day'));
output is ::
Today is :: 11-07-2017
End date is :: 09-09-2017
Code : https://3v4l.org/jmT9a
any help or suggestion will be appreciated