the following gives me November, which is what I want.
$curr_month = date (F);
Now how do I get NEXT month? So it displays "December"?
I tried this but it doesn't work. I have a bad feeling I need to use mktime but that gives me stomach aches trying to figure it out!
<?php
echo date (F);
$nextmonth = date("F")+1;
echo $lastmonth;
?>