Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Someone please help - Forms

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I do not know where to go on this site in search of Microsoft Frontpage forums. This is what I want to accomplish but I am having trouble. Suppose some customer inputs information into the fields shown, then when they press the submit button it goes to a page where it shows what they have inputted, then once they've agreed on the information they inputted from that page they press a button and it shows them a confirmation. This may sound discrete, but I hope someone understands. A - B - C
A = the information the customer provides
B = "please verify the information you've submitted, once you've finished verifying your information, press the submit button."
C = thank you for your request, your information is being reviewed.

can someone help me out?
This is a basis for any internet company. I just need the functionality.

Sheila
 
The only way to do it without some server-side scripting (CGI, ASP, PHP, etc.) would be to take the inputted form data and put it into a cookie using javascript, then on the confirmation page, you would get the cookie data back and display it. Then they would submit the form and the 3rd page would insert the data into your database and give them a confirmation using a server side scripting language.

In an e-commerce setting, you don't want to assume that the user has cookies enabled, so you would request the data from the form in the HTTP request with some sort of scripting language rather than putting it in a cookie.

Help any?



-Scott
 
I seen posts where people also store data in a "hidden" frame to pass it around. Maybe that technique would work. You could also try passing the data as part of the url to the next page, and get it from the query string. Those are the only server-side options I know of.
Tracy Dryden
tracy@bydisn.com

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top