First page:
user enters a number and submits. The second page is populated with html input fields based off the number the user entered. So if they entered 6 than page two would populate with 6 input fields.
Now the user enters thier info in the input fields and submits this to a third page which eventually I would like to write this to a file. For now I would just like to know how to take all the input field values and put them into an array. The number can change depending on the number the user enters.
The input fields on page two were named using a for loop. So they were all incremented by one. Example: label1, label2, label3, label4, label5, label6.
Now when these varialbles are passed to the next page via a form how do I put all these into one array.
I hope this makes sense and my explanation is clear, I could put up the code if needed. Thanks for taking the time and any help.