Hi
I have a php script which
(1) extracts a player list out of database and sticks it in a form for user to select a team
(2) validates selected team against certain rules
If validation is successful, I want to
(3) ask if user wants to register team
(4) another form to get user information
(5) update some database tables with all the info.
How do I pass the selected team into subsequent processing? In (3) I need a form and button to see if use wants to continue followed by a further form to get user details. How do I keep the info from the first form?
Should I include it in the subsequent forms as hidden fields or is there a way to tag it on to the form or should I save it to a temporary table.....
thanks for helping a newbie....