Quote for the php manual
print(date( "l dS of F Y h:i:s A" ));
print("July 1, 2000 is on a " . date("l", mktime(0,0,0,7,1,2000)));
It is possible to use date() and mktime() together to find dates in the future or the past.
Example 2. date() and mktime() example
$tomorrow = mktime(0,0,0,date("m") ,date("d")+1,date("Y"));
$nextmonth = mktime(0,0,0,date("m")+1,date("d"), date("Y"));
$nextyear = mktime(0,0,0,date("m"), date("d", date("Y")+1);
endquote
$nextmonth = mktime(0,0,0,date("m")+1,date("d"), date("Y"));
echo date("F",$nextmonth);
that will echo the textual format of next month and instead of putting in the mktime stattemnt date("m")+1 i belive you can put in just the numerical number of the month. i hope this helps you.
-Jon
p.s. the "F" inthe date statment tells it to display teh Long textual format of the month there is a multitude of date and time functions all outlined in the manual.