Hello all,
Here is some background to my question. I am working with two tables, one holds the users name and login id. The second holds the users address information. Many times several people in the same household will all have usernames, thus the second table. The users table will have a parent_id that links to an address in the address table. This way when someone pulls up the address list I can link everyone who lives at a particular address and group them together.
Now the problem.
When they register they fill out a form. Using the $_post() I pass the information to the second page which checks to see if someone else with the same last name has registered. If someone has it sends them to a page to confirm whether or not they live at that address. If no one has it sends them to complete the address information.
How do I now pass their user information to that third page? I can't register it in the database because I haven't determined what address to link them to. Is there a command or function that I can use to pass this data to the third page?