Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html><body><form method=POST action=test_arrayinput.php>
<input type=text name="foo[1]">
<input type=text name="bar[1]"><br/>
<input type=text name="foo[2]">
<input type=text name="bar[2]">
<input type=submit>
</form></body></html>
Array
(
[foo] => Array
(
[1] => a
[2] => b
)
[bar] => Array
(
[1] => 1
[2] => 2
)
)