for ($x=0; $x < $authnum; $x++)
{
printf("<p>$x+1);
print("<input type=\"text\" name=\"auths[$x][0]\">\n");
print ("<input type=\"text\" name=\"auths[$x][1]\">\n");
print ("<input type=\"text\" name=\"auths[$x][2]\">\n");
}
$authnum is defined by a user submitted #.
The problem I face is when trying to print out the contents of those text boxes. Here is what I've tried to use:
print("$auths[0][1], $auths[0][0], $auths[0][2], and $auths[1][0] $auths[1][2] $auths[1][1]");
The only things that show up are the commas. When using "get" as the form method it shows that the variables get passed.. but the way I'm calling them seems to be wrong. Any suggestions?