ok I'm trying to submit a variable which will define the text content of a page
It should be simple but
my index.php uses a template which, itself gets an external nav bar in a file which I get by
<INCLUDE FILENAME="navbar.html">
in it I have
<a href="index.php?page="text/first.php">Home</a>
just to get this working I've included in index.php these lines
print $HTTP_POST_VARS['page'];
echo $page;
they return the Undefined index and Undefined variable errors respectedly
I would like to ulimatly, in this instance make
$page="text/first.php"
Anyone see where I'm going wrong