Hi,
I'm trying to pass variables from my navigation links to my index.php page to set the bodies content in the GET method.
For some reason, index.php doesn't recognize that the variable i'm passing in exists.
I'm running win2k, apache 1.3.23, and php 4.11 as a module. Here's basically what my code is:
index.php:
if (!(isset($page))) {
$page = "pages/news/new.php";
}
include($page);
nav.php
<a href="index.php?page=pages/news/update.php">Enter</a>
It doesn't see the $page variable. No matter what I do.
I used the exact same format in the last web page I designed on win98, and it worked fine. Is there a variable in the ini file i need to set or something, cuz I don't see what I'm doing wrong.