date + 3 day php code example
Example 1: php date + one day
<?php
$stop_date = '2009-09-30 20:24:00';
echo 'date before day adding: ' . $stop_date;
$stop_date = date('Y-m-d H:i:s', strtotime($stop_date . ' +1 day'));
echo 'date after adding 1 day: ' . $stop_date;
?>
Example 2: php script to calculate next 50 days from current date
$NewDate=Date('y:m:d', strtotime('+50 days'));