
June 9th, 2000, 08:12 AM
|
|
Contributing User
|
|
Join Date: May 2000
Location: London, England
Posts: 251
Time spent in forums: < 1 sec
Reputation Power: 9
|
|
|
You can't do this!
While you could use a JavaScript onclick to move onto the next page without using a Submit button, the form data wouldn't be carried forward and therefore this would be pointless.
If you're writing server-side scripts yourself to do this kind of thing and you want to link forms on several different pages, one way to do it would be to have the script that processes the first form write the values from that form into hidden fields on the second form, and so on until the final page where the whole lot would be submitted.
Or you could use cookies to generate and store a session ID for each user, put the results of each form in a file on the server and act on the whole lot when the last form is submitted.
|