Well my code works fine:
<select>
$result = mysql_query("SELECT id, name from members", $link);
While ($row = mysql_fetch_array($result)) {
echo "<option value='";
echo $name;
echo "'>";
echo $name;
}
</select>
So everytime it looks it would create this:
<option value="name"> Name
<option value="name"> Name
... until the end.
Hope this helps.