Forum Moderators: coopster
$monthAR = array('December, January, February','March, April, May','June, July, August','September, October, November');
However, I want the first three months to be the three that include the current month. What I'd really like to do is something like this:
$monthAR = array(date("F").', '.(date("F")+1).', '.(date("F")+2) etc.
But that doesn't work.
Does anyone know of a way to increment date("F")?
Thanks.