@premiso:
That will not work because I am sending the argument to the Navigation page. That way it will highlight the correct tab. It is for dynamic navigation.
That is doing the exact thing you were trying to do, it is sending GET variables, using the ? & etc sends the get variables in a regular url.
So if that does not work, maybe your new server as register_globals off and you were accessing the variables not using $_GET?
That is the only explanation I can give. The above works fine with this script:
index.php
<?php
include('page.php?id=3&user=jack');
?>
page.php
<?php
echo $_GET['id'] . ' is ' . $_GET['user'] . '\'s user id!';
?>
Should print out 4 is jack's user id! when index.php is called.