Ok, Im using
And I try to type in my browser site.com/index.php?page=test.php and the page does not change to the other pages information...
PHP:
<?php if (empty($page)) {
$page = "home.php";
}
if (file_exists("$page")) {
include("$page");
} else {
echo "<b>404</b> File not found.<br> We are sorry, the requested file cannot be found on our server.";
}
?>








