1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?php $navlist = array( "home" => "Home", "instruc" => "Instructions", "status" => "Status" ); function include_safe($file) { if (file_exists("include/$file")) { include($file); } else { $code = 404; require("errors.php"); } } if (!$_GET['page']) { $page = "home"; } else { $page = $_GET['page']; } ?>