Use hidden fields. When you post to another page which has a form, put the previous input fields as a hidden filds inside the form.
Other way is to use sessions put it doesnt work if some poor chap has disabled cookies..
Example.
form1.php
<form method="post" action="form2.php">
<input type="text" name="something">
</form>
form2.php
<form method="post" action="form3.php">
<input type="hidden" name="something" value="<?=$_POST['something']?>">
<input type="text" name="something_else">
</form>
And so on.. You get the picture?