Create PHP dates in the future
PHPThe date 2 weeks from today will be: September 21, 2008
Here’s how to display a date in the future (say 2 weeks from today):
<?php
$future = mktime(0,0,0,date("m"),date("d")+14,date("Y"));
$mydate = date("F j, Y", $future);
echo $mydate;
?>







August 1st, 2008 at 8:42 am
Thanks this was the exact script I have been looking for, ok so I was only looking for 5 minutes.
Thanks