Yes Well I would like to know if anyone here could help me with a little script that i have been wondering about. Over sites I have been browsing I came across some sites with there links as the follow: http://www.host.com/index.php?=nav or something similar to that. I was wonder how i could get it to do that instead of having that link as the following: http://www.host.com/www/nav.php
Can anyone help me out here? thanks
I have came with this so far, but it doesnt work right... Thanks
<?PHP
if($_GET["page"] == "nav") {
include("www/nav.php");
}
?>