Hi, when you inluce a file with the include function, the file you inlcude becomes a part of the "main" script.
(btw, can you really include http?)
To access those vars you dont need to do anything exapmple:
-> test.php3
<?
$var = 2;
include("anotherpage.php3");
?>
-> anotherpage.php3
<?
echo $var; // will echo 2.
?>
later.
(Else use the header function to throw vars to another page.)