= 15)) { $file = "main-halloween.html" ; } else if (($month == "Nov") && ($date >= 15)) { $file = "main-thanksgiving.html" ; } else if (($month == "Dec") && ($date == 14)) { $file = "main-nc.html" ; } else if (($month == "Dec") && ($date >= 15)) { $file = "main-xmas.html" ; } else if (($month == "Jan") && ($date <= 2)) { $file = "main-xmas.html" ; } else if (($month == "Feb") && ($date == 1)) { $file = "main-columbia.html" ; } else if (($month == "Mar") && ($date == 17)) { $file = "main-stpatrick.html" ; } else if (($month == "Apr") && ($date == 22)) { $file = "main-earthday.html" ; } else if (($month == "Sep") && ($date == 11)) { $file = "main-9-11-2001.html" ; } else if (($month == "Apr") && ($date == 16)) { $file = "main-vt-edu.html" ; } else if (($month == "Feb") && ($date == 24)) { $file = "main-steve-jobs.html" ; } else if (($month == "Jul") && ($date == 20)) { $files = array("main-ac.html", "main-apollo-11.html") ; $file = array_rand($files); $file = $files[$file]; } else { $files1 = glob('./main-quote-*.html'); $files2 = array("./main-columbia.html", "./main-towers.html"); $files3 = array("./main-smr.html", "./main-bo.html"); $files = array_merge($files1, $files2, $files3); $file = array_rand($files); $file = $files[$file]; } $file = file_get_contents("$file"); echo "$file" ; ?>