I have a table that is being written out in PHP, here is one line:
echo ("<td><input name=\"size[$i]\" type=\"text\" id=\"size[$i]\" value=\"$size[$i]\"></td>\r\n");
Let's say for this example $i=4, when I am using $_REQUEST to retrieve the value of $size[4], how do I do that?
I think I could use a FOR EACH to get ALL the values of $size but how do I get only this specific value?
$size[$i]with$size[4]?