I have an selectbox list Is it possible to select multiple option:
<select name="access_list[ ]" size="7" multiple="multiple">
<?php $res=mysql_query("select * from list" ,$conn);
while($row=mysql_fetch_assoc($res))
echo"<option value=".$row['id'].">".$row['name']."</option>";?>
</select>
Use name as name="access_list[]"
without space.
And you can get selected options with $_POST['access_list']
$_POST['access_list']
is array
that contains selected options