> date("Y-m-d",strtotime("+1 month"))
>
> returns December 1st! This happens when you add 1 month to any day that
> doesn't exist in the next month. Quite annoying that you have to handle
> it like this:
>
> date("Y-m-d",strtotime("+1 month",strtotime(date("Y-m-1"))))
How about
echo date('y-m-d',strtotime('next month last day'));
---John Holmes...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

