On my site I have 2 combo boxes (1 to select a member to delete and another to select a member to edit). The Delete one uses a mysql culomn to populate it,\
How do /I copy it so that the Edit one is populated like that one?HTML Code:<select name="id" id="name"> )<option value="0" selected>(please select:)</option> <?php while($row = mysql_fetch_assoc($result)) { echo "<option value=".$row['id'].">".$row['Last_Name'].", ".$row['First_Name']."</option>"; } ?> </select>
http://mvsr.org/secure/members.php
Do I have to query the database again or is there a better way"?
Thanks...





Bookmarks