codice:
$st=mysql_query("SELECT campo_nomi FROM tabella") or die(mysql_error());
$temp=array();
while($row=mysql_fetch_assoc($st))
    $temp[]=$row['campo_nomi'];
print_r($temp);