I think the problem is I don't have any code.
I frequently use constructions like the following in forms used to enter new records:
__________________
$result = mysql_query("SELECT * FROM phones group by site order by site");
echo "Work Site:";
while ($rows = mysql_fetch_array($result)){
echo "".$rows['site']."";
}//end while
echo "";
__________________
What I'd like to do is provide users with the ability to select, in this case, the site on an update screen. When I've attempted that in the past, the code above wipes out the data already in the database, defaulting the value to the first item on the list.
Code like this:
__________________
Work Site:
<? $site = stripslashes($myrow["site"]); ?>
__________________
Picks up the value in the database and displays it, but does not provide the ability to change the data using a Select with a list of values in the database.