
June 17th, 2000, 06:10 PM
|
|
Contributing User
|
|
Join Date: May 2000
Location: London, England
Posts: 251
Time spent in forums: < 1 sec
Reputation Power: 14
|
|
|
I assume what you mean is that you want to carry a session identifier and/or form fields for a particular user across multiple forms/pages.
The first form can be static HTML but you're going to have to generate the rest from a script.
You can then carry forward the results of previous forms using hidden form fields.
<form>
<input type=hidden name=thisfieldname value=theirinput>
</form>
You can accumulate several hidden fields across many forms just by reading the input from the CGI and outputting it as HTML hidden fields.
A more complex method would be to use cookies to store this information.
And remember, hidden fields aren't secret, they're just not visible to the user when viewing the HTML page. The user can always read them by viewing the page source.
|