How do i do the PHP navigation things like ?page=home ?

How do i do the PHP navigation things like ?page=home ?
James
Connected to reality through a proxy server.
PHP Code:<?php
if( isset( $_GET["page"] ) )
{
$string = $_GET["page"];
$string = preg_replace( "([^a-zA-Z0-9])", "", $string );
if( file_exists( $string . ".php" )
{
include( "$string.php" );
}
else
{
include( "404.php" );
}
}
?>
Ignore plz
EDTALKING
Last edited by Mr Macro; 30-05-2007 at 04:47 PM.
James
Connected to reality through a proxy server.
Want to hide these adverts? Register an account for free!