If you want to use multi select option with PHP you need to use arrays:
HTML file :
<select name="select[]" size="5" multiple="true">
options here
</select>
PHP file :
<?PHP
$select = $_POST['select'];
if(is_array($select))
{
foreach($select as $option) {
echo $option;
}
}