Posts: 251
Location: Belgium, Antwerp, Zoersel
|
Oh, sorry, the term's not invisible fields but hidden fields.
Anyway, I guess you know how to send the data from one page to another (using method="POST"). Then, on the second page you'll have to print the data from the forms in hidden fields (using php or another server-side scripting language).
Example:
first page:
HTML Code:
<form name="form" action="page2.php" method="POST">
<input type="text" name="textfield1" size="10" />
<input type="submit" name="submit" />
</form>
second page:
HTML Code:
<form name="form2" action="page3.php" method="POST">
<input type="hidden" name="textfield1" value="<?php echo $_POST['textfield1']; ?>" />
<input type="text" name="textfield2" size="10" />
<input type="submit" name="submit" />
</form>
|