I'm trying to create a script taking in values from a form. The values in the form are created dynamically so my script can't know how many are there.
eg name1, name2, name3
Using &readParse; I normally access these things through $in{'name1'} and so on
but is it possible to do something like
for ($i = 1, $i <size, $i++)
$in{'name$i'}
I tried one or two way and couldn't get it working
Any ideas