Hi buddy!
the only way to pass a variale from one page to another is by using the GET or POST methods:
by url adding:
page_to_go.php?variable_name=value
this may be absolute address or relative one.
by form:
<form action="page_to_go.php" method="POST/GET">
<input type="text" name="variable_name" value="initial value">
<input type="submit" value="Go!">
</form>
The only one you want to chose here is if you want to use the GET method(actualy the same as adding to the url as described above) or POST method. In the second way to access the variable try $HTTP_POST_VARS["Variable_name"]
Any questions are welcome.
Djumaka