tienes que hacer algo como esto donde los datos estarán en un araay del tipo
$telefonos=array("123456789","54346757");
Código:
<?php
$telefonos=array("123456789","54346757");
?>
<p>
<select name="select" id="select">
<?php for($a=0;$a<count($telefonos);$a++){?>
<option value="<?php echo $telefonos[$a];?>"><?php echo $telefonos[$a];?></option>
<?php }?>
</select>
</p>