I'm new to this stuff but i reckon i can help you out here because i've just been through this.
1.
<?
probably need something at the start if you have values already
eg. if($FacultyID){ then you just sent some values so do something - eg find which item in the list is current or create some tmp variables. if you need to reselect the last selection do it in the while loop with an if statement that tests oldID = newID and adds selected} if is true
- create the meat for the select statement from the database.
optionsblock = "
while ($row = mysql_fetch_array($result)) {
$FacultyID = $row['FacultyID']
$SSN = $row['SSN'];
$FirstName = $row['FirstName'];
$Lastname = $row['Lastname'];
$option_block .= "<option value=\"$SSN\">$FirstName.$Lastname</option>";
"
- in the html build the select statement.
<FORM NAME="combo_select" METHOD="post" action= <? echo "$PHP_SELF" ?>>
<select name="drop_down">
<? echo "$option_block"; ?>
<input type="text" name="FacultyID" VALUE = $tmpFacultyID>
<input type="text" name="SSN" value=tmpSSN">
<input type="text" name="FirstName" value= $tmpFirstName>
<input type="text" name="LastName" value=$tmpLastName>
</select>
<P><input type="submit" name="submit" value="update list"></P>
</form>
is this what your looking for?