Thread: Calendar help
View Single Post
Old 10-05-2009, 03:17 PM   #6 (permalink)
ETbyrne
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

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'); 
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote