you should have known that from the .asp extension 🙂
in your FORM code, do this
<select name="mySelect[]" multiple>
<option value="1">my option</option>
.
.
.
</select>
notice the '[]' after the name, this will allow PHP to process it.
on the page that gets this data you can just reference $mySelect as an array, so things like sizeof() will give you an idea of how many options were selected. you can treat this just as you would any other array in php.
note, the value of each element corresponds to the value="" in the option tag
p.