You can pass the information using hidden fields or if you want, use sessions.
To do it using hidden fields do this inside your form.
You may want to filter out the submit button.
foreach( $_POST as $key => $s )
echo "<input type='hidden' name=$key value=$s >";
HalfaBee