globals.php (snippet)
function displayPage() {
$dir = "content/"
if(isset($_GET['PID'])) {
$page = $_GET['PID'];
if(file_exists($dir.$page.'.php')) {
include($dir.$page.'.php');
}
else {
include($dir."home.php");
}
}
else {
include($dir."home.php");
}
}
index.php (snippet)
include("ssi/globals.php");
....
<body>
<?php displayPage(); ?>
</body>
....
NOW, this works fine and dandy for all the files which exist in content/ and it displays home.php if the file does not exist in /content/ the problem is, i can still put "index.php?PID=../file" and if the file exists then it still includes it, even outside of the /content/ folder...this could be very troublesome - especially if some ass decides to type in PID=../index
Please help, I know i can just use switch($page) but the website is going to be very dynamic - lots of addition of new pages, no time to update globals.php each time a new page is added.
So, please help?