My PHP book says that it is possible to place arrays variables in form elements.
My first stab at this did not work. Has anyone gottent this to work?
For example:
<input name=arrayvar[] type=text>
<input name=arrayvar[] type=text>
Then the POST routine would be able reference the following:
echo arrayvar[0]."<BR>";
echo arrayvar[1]."<BR>";