$oku = file('combo.txt'); $select .= '<select name="combo">'; foreach($oku as $string) { $select .= '<option>'.$string.'</option>'; } $select .= '</select>'; print $select;