Log in

View Full Version : Anyone know where I could find a PHP navigation tutorial?



Oliver46
13-07-2006, 10:11 AM
Anyone know where I could find a PHP navigation tutorial?

Impossible
13-07-2006, 10:15 AM
http://techtuts.com/?view=tutorials&act=tutorial&id=335

:]

Mentor
13-07-2006, 06:27 PM
The code i personly use is:


//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");
}
}


Comments should exsplain the workings

Want to hide these adverts? Register an account for free!