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.
<form>
<input name="test" [...] />
<input name="test" [...] />
<input name="test" [...] />
</form>
$_POST["test"][0]
$_POST["test"][1]
$_POST["test"][2]
<form>
<select multiple="true" name="test[]">
<option value="1" selected="true">One</option>
<option value="2" selected="true">Two</option>
<option value="3" selected="true">Three</option>
</select>
</form>
$_POST["test"][0]
$_POST["test"][1]
$_POST["test"][2]