PHP Scripts
One form over two pages
One form appears
and is replaced by another.
Finally the last form in the example, when submitted, goes to a results page.
<?PHP
<html> <?php <form method=POST action="results.htm"> html - your 2nd form goes here <input
type=submit name="form2" value="continue"'> <?php <form method=POST action="<?echo $PHP_SELF; ?>"> html - your 1st form goes here <input
type=submit name="form1" value="continue"'> <?php </body>
|