Anyone know where I could find a PHP navigation tutorial?

Anyone know where I could find a PHP navigation tutorial?
The code i personly use is:
Comments should exsplain the workingsPHP Code://Get the varible P from url
$p = $HTTP_GET_VARS['p'];
// if p does not exist include start page
if(!$p){
include("page_dir/start.php");
}
else
{
// if p is set we see if the document it contains exists, if so we include it
if(file_exists("page_dir/$p.php"))
{
include("page_dir/$p.php") ;
}
else
{
// if it doesnt exist we include the start page
include("page_dir/start.php");
}
}
Last edited by Mentor; 13-07-2006 at 06:28 PM.
Want to hide these adverts? Register an account for free!