Warum machst Du nicht sowas in der Art hier:
Sieht doch auch ganz schön aus ... !
PHP-Code:
<select name="select">
<option value="">Koordinaten</option>
<?php
if ( $res = mysql_query("SELECT blahspalte FROM blahtable WHERE blahspalte2 = '$blahcookie'") ) {
while ( $row = mysql_fetch_row($res) ) {
echo "<option value=\"".$row[0]."\">".$row[0]."</option>";
}
mysql_free_result($res);
}
?>
</select>
Kommentar