"; if (!isset($show)) { $show = "home"; } $page = "content/" . trim($show) . ".html"; $submenu = "content/menu_" . trim($show) . ".html"; //Jeff's experiment if (file_exists($page)) { $body = $page; $incflag = TRUE; } else { $page = "content/error.html"; $incflag = TRUE; if (file_exists($page)) { $body = $page; $incflag = TRUE; } else { $body = "

Unable to find the content you requested


"; $incflag = FALSE; } } define(INCLUDEFLAG,$incflag); define(PAGECONTENT,$body); define(TOP,"content/top.html"); define(MENU,"content/mainmenu.html"); function fnContent() { echo "\n"; if (INCLUDEFLAG) { include(PAGECONTENT); } else { echo PAGECONTENT; } echo "\n"; } ?>