A really simple example of passing using POST method and hidden form variables:
The first form:
PHP Code:
<form action="secondform.php" method="post">
Name: <input type="text" name="user" value=""><br>
Email: <input type="text" name="email" value=""><br>
<input type="submit" name="submit" value="submit">
secondform.php
PHP Code:
<?php
$name=$_POST['name'];
$email=$_POST['email'];
?>
<form action="thirdform.php" method="post">
<input type="hidden" name="user" value="<?=$name?>"><br>
<input type="hidden" name="email" value="<?=$email?>"><br>
Phone: <input type="text" name="phone" value=""><br>
Option: <input type="text" name="option" value=""><br>
<input type="submit" name="submit" value="submit">
thirdform.php
PHP Code:
<?php
$name=$_POST['name'];
$email=$_POST['email'];
$phone=$_POST['phone'];
$option=$_POST['option'];
Echo"
Here are your results:
$name
$email
$phone
$option
";
?>
=================
The "Wait" page .... <sigh>
Tell your client that nobody will be impressed with that.
Maybe you can do a javascript thing with an animated .gif?
=================
The other option with using Sessions or Cookies ... takes too much time to explain.
Search Google for a "PHP Cookie shopping cart script" ... it's sort of the same thing.