adding some dates to current date

A

Anonymous

Guest
Hi

U can use strtotime() function. It is very nice. Try it.

Code:
$date = date('d M Y',strtotime(' + 7 days'));
echo $date;
 
Back
Top