ie
Amount of Text Boxes?: <input type="text" name="skill_amount3">
<input type="submit">
That goes to the next page and say you enter "3" in the text box, it gives you "3" text boxes with the SAME value for each textbox.
Ive done it like
for ($i = 0 ; $i < $skill_amount3; $i++)
{
echo "
Text Box: <input type=\"text\" name=\"box\">
";
}
Then i want to pass the results over to the next page!! But BECAUSE i dont know how many text boxes a users going to be using i can only do the
for ($i = 0 ; $i < $skill_amount3; $i++)
{
echo ""
}
again.
Ok, now to the problem!!
Hard Work Huh!
The users asks for 3 text boxes the forms gives them that, and they can right there text in the text box!
This submits the entries, and on the FINAL page (With me still?

Gives me 3 results!
BUT 8O
all the answers are the values from the last text box!! So its like the 2nd box value overwrites the first, and the 3rd box value overwrites the 2nd and gives me 3 boxes with the same answers!!
The results i put in were!!
AB001
Value 1
AB002
Value 2
and only AB002 and Value 2 came back TWICE!!
Can anybody help please??
This is quite urgent!
Hope you can,
Thanks VERY much for your time
Adam