Hey there people..
Another fun tut here from Base
I am going to show you that cool navigation thing you know: page.php?p=downloads
and things like that..
Firstly i would like to point out that there are over 30 different ways of achiving this.
Because i like my tutorials to be easy to understand, i am going to show you the IF Statement way of doing this, as in general PHP it's easier.
So let's say you had a page called index.php
You could go: index.php?page=home
and it would show:
You are viewing the home page
or if you did index.php?page=downloads
then it would show: You are viewing the downloads page
Otherwise it would show: Your not viewing any specific page
Remember we don't put $_POST[''] UNLESS we have just posted a form linking to that page.
Otherwise it won't work...
Hope you have learned somthing!
Base
Another fun tut here from Base
I am going to show you that cool navigation thing you know: page.php?p=downloads
and things like that..
Firstly i would like to point out that there are over 30 different ways of achiving this.
Because i like my tutorials to be easy to understand, i am going to show you the IF Statement way of doing this, as in general PHP it's easier.
CODE
<?php
if($_REQUEST['page'] == "home"){
echo "You are viewing the home page";
} elseif($_REQUEST['page'] == "downloads") {
echo "You are viewing the downloads page";
} else {
echo "Your not viewing any specific page";
}
?>
if($_REQUEST['page'] == "home"){
echo "You are viewing the home page";
} elseif($_REQUEST['page'] == "downloads") {
echo "You are viewing the downloads page";
} else {
echo "Your not viewing any specific page";
}
?>
So let's say you had a page called index.php
You could go: index.php?page=home
and it would show:
You are viewing the home page
or if you did index.php?page=downloads
then it would show: You are viewing the downloads page
Otherwise it would show: Your not viewing any specific page
Remember we don't put $_POST[''] UNLESS we have just posted a form linking to that page.
Otherwise it won't work...
Hope you have learned somthing!
Base
discuss this topic to forum
