You can do it with "session ways" or others with passing values.
here's what I did:
page1.php:
...
<form name=test method=post action=page2.php>
<input type=text name=test1 size=10>
<input type=text name=test2 size=10>
</form>
...
page2.php:
...
<?
$qs = "?test1=" . urlencode($test1) .
"&test2=" . urlencode($test2);
$URL = "page3.php" . $qs;
<a href=\"$URL\">Next to page 3</a>
?>
...
page3.php:
...
<?
echo "$test1<BR>";
echo "$test1<BR>";
?>
...
Hope this helps ... 🙂