Forum Moderators: coopster
This code:
<input type="text" name="test[fish][1]" value="2" />
<input type="text" name="test[fish][red]" value="blue" />
Ends up being accessible through:
echo $_POST['test']['fish']['1']; // 2
echo $_POST['test']['fish']['red']; // blue
To see the structure for yourself, just do a
print_r($_POST):)