Otherwise, if the form data is submitted, and you want to use that info for other forms, or you want to do a server-side check on the data:
You can echo the actual variable as a value in form elements:
<input type="text" value="<?php echo $SubmittedVar;?>" name="SomeName">
Of you can indlude them as hidden var's in the next form:
<input type=hidden name= value=>
Or you can after submission include them into session variables (eg write a small function which will check whether a POST array exists, and, if the variables match against a predefined set of allowable names & types, automatically include them in hte session array.
cheers,
J.