Hello.
I was wondering about this:
I have a form with text input fields , some checkboxes and a select input.
The text input fields are generated dynamically from a mysql table so when a new record is added to the table a new text input is generated.
So my question is how do i process the text input fields? For instance i want to store the data into session variables.
This is how i do it now:
1. On the form i have a "SELECT * FROM table" and then generate all the text inputs .
2.On the processing page i use another SELECT to create variables that i use to check what text input was typed in.
Thank you.