Okay... I have a form where the user enters a number in an input field and hits submit.
Based on the number the user enters - a number of new textareas will become available on the following page. The new textareas are named in number order (tdata1,tdata2,tdata3,tdata4) - Now when this page is submitted is where I am encountering a problem.
I need to print the values of these textareas from the previous page, but since I don't have a way of knowing how many there are going to be, I assume it needs to be in an array of sorts. I'm currently using POST to send the variables.
... I had no clue how to approach this, so I tried to do the following:
variable nof is the nuber that was entered on the first page, and also t
he number of input fields that were created on the second page.