HEy.......You'll have to excuse me, but I'm 100% newbie (I'm 16...) where do I have to put this code?
<?
if ($page == 1) {$headline = ("PAGE 1"); }
else if ($page == 2) {$headline = ("PAGE 2"); }
else if ($page == 3) {$headline = ("PAGE 2"); }
else {$headline = ("whatever"); }
?>
and do I have to change PAGE1, PAGE2 etc? Do I have to change them with url's?
What about this:
<?
if ($page == "1") {
include ("test1.php");
// or
echo ("page 1 details");
}
if ($page == "2") {
include ("test2.php");
// or
echo ("page 2 details");
}
if ($page == "3") {
include ("test3.php");
// or
echo ("page 3 details");
}
?>
Where do I have to insert this code? (in all pages?)
What do I have to do with echo ("page 1 details") ??
Could you please-please-please explain this as if I were 5 years? 🙂
Thanks for your support....I'm really grateful......... 🙂