I need to get the date after one month,how to do it with PHP.one month have 30 days and sometime have 31 or 28 days.I confuse now.
Thanks for your help.
Easiest way is
$date_in_one_month = date('d M Y', strtotime('+1 month'));
or
$date_in_one_month = date('d M Y', mktime(0,0,0,date('n')+1, date('d'), date('Y') ));
hth