CHANGE THE TITLE AND UNCOMMENT THE TYPE! <- $Date: 2001/03/16 18:31:03 $ $Revision: 1.3 $ Functions Included: Functions Referenced: getBase($base, $SCRIPT_NAME) printHorF($incBase, $type) // May also take an $action arg as well printErr($errstr) Files Included: universal.inc.php headers and footers, determined by the printHorF function (index|section|article).main.inc.php ********************************************************************/ $title = "Engineering Expo 2004"; $type = "article"; /******************************************************************** ***** You shouldn't have to change anything below here! ************ *******************************************************************/ // Get common functions $u = "$DOCUMENT_ROOT/universal.inc.php"; if (file_exists($u)) include($u); else die("Can't find $u!"); // Set this in universal.inc.php global $DEBUG; // Get the rest getBase($base, $SCRIPT_NAME); printHorF($base['path'], "header"); $m = $base['path'] . "common-parts/$type.mid.inc.php"; if (file_exists($m)) include($m); else printErr("Can't find $m"); printHorF($base['path'], "footer"); ?>