Jump to content

from page to page


dazz_club

Recommended Posts

hi people,when completing a form and it says to click to the next page, and it presents new set of input fields to complete and then on the next page some more fields and then at the bottom of the form theres a submit button,to click once everything has all benn filled in.my question is what code does it use to pass the previous completed forms details to the next and then be submitted?is it using something like "GET_$variablenamehere" in the following pages until the last page which allows the user to submit the completed form?hope you understand what i mean.cheers

Link to comment
Share on other sites

nonono :). The GET method just means the variables get stored in the URL: e.g. http://domain.com/?variablename=something, then to get the vairable from the url you do this:$_GET['variablename']You would need to put each variable you want into the forms action and have the method be GET until the last for, you would want to have hidden fields on the last one and use the post method :).

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...