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.
<select name="age">
<option value="15">15</option>
<option value="25">25</option>
<option value="30" selected>30</option>
<option value="35">35</option>
</select>
<form action="/mylocation/script.php" method="get">
<select name="selection" multiple>
<option value="computer">computer</option>
<option value="monitor">monitor</option>
<option value="camera">camera</option>
<option vaue="printer">printer</option>
</select>
<input type="submit" name="submit" value="submit">
</form>
<?php
while(list($key,$var) = each($HTTP_GET_VARS))
if(is_array($var)) {
for($a=0;$a<count($var);$a++)
echo $key." = ".$var[$a]."<br>\n";
}
else {
echo $key." = ".$var."<br>\n";
}
?>
if(is_array($var)) {
for($a=0;$a<count($var);$a++)
echo $key." = ".$var[$a]."<br>\n";
}