RyanMK
Still alive
You know on websites when you get in the url bar:
With this PHP code you can do just that:
Enjoy
To add more pages just copy and paste from case to break; and change the details.
You must be registered for see links
With this PHP code you can do just that:
PHP:
<?php $page = $_GET['page'];
switch($page)
{
case 'blah': /* This is what goes after page= */
include 'projects.html'; /* link to the file you want to open */
break;
} ;
?>
Enjoy
To add more pages just copy and paste from case to break; and change the details.