MS-Tropical/index.php
Skylear 7d1d7ff996 Upload the site
All the files associated with the old website :D
2018-03-21 11:13:03 -05:00

29 lines
540 B
PHP
Executable File

<?php
define('SAFE', true);
$LockedPages = array();
include("Pieces/header.htm");
if (!empty($_GET['page'])) {
$page = "home";
$TmpPage = basename($_GET['page']);
// If it's not a disallowed path, and if the file exists, update $page
if (!in_array($TmpPage, $LockedPages) && file_exists("Pieces/{$TmpPage}.htm")) {
$page = $TmpPage;
}
} else {
$page = "home";
}
if($page == "home") {
include("Pieces/slider.htm");
}
// Include $page
include("Pieces/$page.htm");
include("Pieces/footer.htm");
?>