Hi,
Part of one of my current projects is to provide an application form. This form needs to get quite a bit of data, so rather than have one really long form on one page I have split the data over 3 pages. Each page validates the input as you go so that the final page can submit it all to the database knowing that it is valid.
What I don't know how to do is pass the data through the three pages. Each page needs to pass it's data onto the next page so that by the time the final page is complete all the data can be sent to the server.
So each page has a form on it using method="post" and action that takes it to the next step of the process. Is there are a way to keep passing the increasing amount of data down the chain? I figure I could write to the database every time but I was hoping to avoid that so that if the process s aborted I don't have to worry about it.
Does that all make sense? In short how can I pass data through 3 pages and onto the server?
Many thanks
Nathan
Part of one of my current projects is to provide an application form. This form needs to get quite a bit of data, so rather than have one really long form on one page I have split the data over 3 pages. Each page validates the input as you go so that the final page can submit it all to the database knowing that it is valid.
What I don't know how to do is pass the data through the three pages. Each page needs to pass it's data onto the next page so that by the time the final page is complete all the data can be sent to the server.
So each page has a form on it using method="post" and action that takes it to the next step of the process. Is there are a way to keep passing the increasing amount of data down the chain? I figure I could write to the database every time but I was hoping to avoid that so that if the process s aborted I don't have to worry about it.
Does that all make sense? In short how can I pass data through 3 pages and onto the server?
Many thanks
Nathan
Comment