Hey Im new to PHP and was following a poorly writen tutorial on how to create a Iframe like navigation using PHP.
This is the code where I want to contents to appear
<?php
$id = $_GET['id'];
Switch ($id) {
case "contact":
include('contactus.php');
break;
default:
include('home.php');
}
?>
and the code for linking
<a href="index.php?page=contact">Contact</a>
edit---
The home.php page loads where I want it but everyother link like contact.php doesnt work... just keep going to the home.php page and says ....index.php?page=contact in the address bar