Ok this is hard to explain, but I'll give it a go.
I have a table with 100+ rows that have a few text boxes in them. Each text box's name includes its row (ex. url45)
When the form is submitted I have a while loop and it submits each row (its nessecary for how I am doing this) but I can't create the string name. For instance lets say its going thru the loop and it has counted up to 23, how can I have a string that has the name $url23, but contains the information from what was $url23 submitted on the form. So far I have tried soemthing like:
$storeurl = $url . $counter
(but that obviously doesn't work and returns just 23, becuase there is no variable $url)
$storeurl = "\$url" . $counter;
(that stores $url23 as text, it does not grab the information from the varible $url23)
This is hard for me to explain so I hope you understand, if you don't let me know, cause I can't figure this out!
Thanks A LOT,
Andrew