[EMAIL PROTECTED] (Mike R) wrote in news:[EMAIL PROTECTED]:
> > I have an issue where I have a value in a link like this: > > http://www.something.com/templates/nav.php?page=about > > But when the link is clicked on, the value of page is empty. Is this a > globals issue of some sort? > > Thanks, > > -Mike How are you testing for the variable on nav.php? It will be in $_GET ['page'] with more recent versions of PHP. If you want to use the variable directly, like $page, you need to extract it first - extract($_GET). -Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php