I have a select list with options. How would I go about populating an array with all of the options in that list?
//form
<form method="post" action="popArray.php">
<select name="selectitem" multiple="multiple">
<option value="United States">United States</option>
<option value="Russia">Russia</option>
<option value="North Korea">North Korea</option>
</select>
<input type="submit" value="List">
</form>
//popArray.php
<?php
$areas = array();
//throw all the options into that array.
?>