Basically, what you do, is :"
- At each page where you ewant to use variables which were present in the last, but not parsed throughthe url, right after the <? tag , you place seesion_start()
In the page, you can then register variables (sesion_register(somevariable)
and you can retrieve variables from previous pages:
$somevar = $HTTP_SESSION_VARS[somevar];
That's in short all. There is a lot more you can do but it is a bit much to explain all here.
As I said.. Check the manual.
Try:
<?
session_start()
$test = "HI the!";
session_register(test);
<a href=nextpage.php>link</a>
?>
Nextpage.php
<?
session_start()
echo $HTTP_SESSION_VARS[test];
?>
J.