I looked at the foreach statement and using arrays, and its quite foggy to me. I just cant quite seem to grasp onto that concept from what I read in the php manual.
for($n=1;$n<3;$n++)
{
$name = "myvar".$n;
echo "<input type=text name=$name>";
}
Just restating my main problem at hand- How would I retrieve the text value from the box with a name of $name when the name itself is generated through code?
I bet its a simple answer, it has to be! It dosnt look as complicated as it seems.