Thanks, but i have a couple of questions..
1) Where do i put this code:
<?
$page = trim($page);
switch($page){
case "copyright":
include('./pages/copyright.php');
break;
default:
include('./pages/default.php');
break;
}
?>
2) Do i need to create pages "copyright.php" and "default.php" and have them as the copyright page and the default page?
sorry for the questions, i'm new to PHP and i want to learn it..