Hello
i have a question
on my page
http://www.weltmeer.ch/divelog/
on the top right i have a country selector
which i would like - after selection to show it on the map
this would be the script to read out the DB
and collect the countrys
having a look at others they have a onchange="goCountry()
but i can't find out what to do
thanks for help and i know it is not only GoogleMAP problem
vincent
<select name="country" class="textfeld" onchange="goCountry()">
<?php
//kategorien auslesen
$sqlbefehl =" Select printable_name
From country ";
$erg_cats = mysql_query($sqlbefehl)or die(mysql_error().
$sqlbefehl);
while($cat = mysql_fetch_assoc($erg_cats)){
echo '<option value="'.$cat['printable_name'].'">'.
$cat['printable_name'].'</option>';
}
?>
</select>
--
You received this message because you are subscribed to the Google Groups
"Google Maps API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-maps-api?hl=en.