Let\'s say I have a date in the following format: 2010-12-11 (year-mon-day)
With PHP, I want to increment the date by one month, and I want the year to be automatica
strtotime( "+1 month", strtotime( $time ) );
this returns a timestamp that can be used with the date function