Oke, here's my problem.
I have 3 page's. The first page ask for a number
The second page generates the given amount of textboxes.
The third one has to be able to check the values of (all) the textboxes.
The name of the textbox in the second page is the name of the variable in the third page.
Now the code on the second page looks like this:
for ($i = 1; $i <= $amount; $i++)
{
?><INPUT TYPE='text' NAME="<?PHP echo "number".$i?>" SIZE='20' MAXLENGTH='30'><BR>
}
How can I get the results in the third page??
Thanks a lot for reading (and reacting?!)
Greetz Peter