Hello everybody,
I have a problem with transferring variables from page to page.
I'm developing a database add form wich contains about 6 web pages. As we all know, you can read out variables from a previous web page containing a form, but if you go from there to te next page, you lose them again. To deal with this problem, I've inserted hidden fields on every webpage:
<input type="hidden" name="name" value="<? echo "$name"; ?>">
So the variables would be passed on from field to field.
When I reach the last page, I show all the variables inserted by the user over the 6 pages and the variables will be added into the database.
Because this is very complicated and doesn't always work, my question is, isn't there an easyer (better) way to do this?
Greetz Helgo Rongen

