Hmm, sorry... I didn't even really think about testing the script that you posted.
Try this:
PHP Code:
<?php
$month = date("F") ;
switch($month){
case "January": echo "January"; break;
case "February": echo "February"; break;
case "March": echo "March"; break;
case "April": echo "April"; break;
case "May": echo "May"; break;
case "June": echo "June"; break;
case "July": echo "July"; break;
case "August": echo "August"; break;
case "September": echo "September"; break;
case "October": echo "October"; break;
case "November": echo "November"; break;
case "December": echo "December"; break;
}
?>
This just prints the month instead of forwards you to a website, but you should get the concept. The break; was missing from the script you posted.
Bookmarks