This is a real nasty bit of PHP to do, in my opinion, see if this helps.
connect.inc just connects to the database.
<?php
include "connect.inc";
$choose=mysql_query("SELECT steetname FROM tablename", $db)
?>
Map<select name="streets">
<?php
while($rows=mysql_fetch_array($choose)) {
print $rows["streetname"];
?>
<option value="<?php echo $rows["streetname"]?>">
<?echo $rows["streetname"]?></option>
<?php
}
?>
</select>
tablename is the name of the table
streetname is the field with the street names in
streets is the variable to be created, ie later on if you do
echo "$streets"; (not sure if "" are needed, sometimes they are, something not I think)
you should get the value selected, hope it helps.