10-05-2009, 03:17 PM
|
#6 (permalink)
|
|
how quixotic are you?
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
|
Another solution would be to use PHP's DateTime class to manipulate dates.
PHP Code:
$date = new Datetime('Aug 2009'); $date->modify('+1 years'); echo $date->format('M Y');
|
|
|
|