"January","02"=>"February","03"=>"March","04"=>"April","05"=>"May","06"=>"June","07"=>"July","08"=>"August","09"=>"September","10"=>"October","11"=>"November","12"=>"December"); $monthDisp=$allMonths[$month]; # the actual publication $pubstory=make_calendar($year,$monthnumber); $fname="${year}_${month}_${monthDisp}"; $pubfile="/agenda/${fname}.html"; $pubtitle="Events in $monthDisp $year"; $pubkeywords="events, $monthDisp $year, chemistry"; $pubdescription="chemistry related events in $monthDisp $year"; create_page("events",$pubfile,$pubstory,$pubtitle,$pubkeywords,$pubdescription); $altpubfile="/agenda/index.html"; create_page("events",$altpubfile,$pubstory,$pubtitle,$pubkeywords,$pubdescription); return $pubfile; } ##################################### MAIN PROGRAM ###################################### include("${root}/members/includes/members-events.php"); include("${root}/agenda/includes/calendar.php"); $month=date("m"); if ($month=="10" or $month=="11" or $month=="12") { } else { $monthnumber=substr($month,1,1); } $location.=find_events(date("Y"),$monthnumber,$month); $target=$location; header("location: ".$target); ?>