How do i do the PHP navigation things like ?page=home ?
Printable View
How do i do the PHP navigation things like ?page=home ?
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