<form name="options" method="get" action="sogaz2.php" >
<select name="list" multiple size="15">
<option value='01' >a</option>
<option value='02' >b</option>
<option value='06' >f</option>
</select>
</form>
if i select all
the querystring reads
.php?list=01&list=02&list=06
however
<? echo(list); ?>
returns only the last value: 6
how can i get all the values as:
01,02,06 ?