Posted by Kasper Johansen on 10/18/93 11:21
"Robertico" <Robertico@nospam.notvalid> skrev i en meddelelse
news:6cf27$42d8f928$513b49d4$2682@news.versatel.nl...
> But when an user goes back, the form is empty (alread filled fields are
> empty again).
You could use your "back-link" as a submit to another form, where you save
the posted information.
Something like this:
<form method="post" action="backlink.php">
<input type="hidden" name="yourname"
value="<?=htmlspecialchars($yourname);?>">
<input type="hidden" name="youremail"
value="<?=htmlspecialchars($youremail);?>">
<input type="submit" value="Go back">
</form>
At your first page, you can just add the write the values to your inputs.
--
Mvh Kasper Johansen
Navigation:
[Reply to this message]
|