Copy & paste the code below to a text editor (like Notepad) and save it as: intellinav.php
CyberNav
"; // This is the Index Page. if ($uri == "/Directory/index.php" OR $uri == "/Directory/") { echo "
Home
"; } else { echo "
Home
"; } echo "
"; // This is the ***** Page. if ($uri == "/Directory/filename.php") { echo "
Page1
"; } else { echo "
Page1
"; } echo "
"; // This is the ***** Page. if ($uri == "/Directory/filename2.php") { echo "
Page2
"; } else { echo "
Page2
"; } echo "
"; // This is the ***** Page. if ($uri == "/Directory/filename3.php") { echo "
Page3
"; } else { echo "
Page3
"; } echo "
"; ?>