Hi,
Trying to figure out how to return the data from an option field so that it is highlighted to the user in a drop down along with the other default choices:
<TR>
<TD WIDTH="150"><FONT FACE="VERDANA, ARIAL, HELVETICA" SIZE="1" COLOR="000000">Site Owner Email:</FONT></TD>
<TD><INPUT TYPE="TEXT" NAME="owner_email" VALUE="<?PHP echo $row["owner_email"]; ?>"></TD>
<TD WIDTH="150"><FONT FACE="VERDANA, ARIAL, HELVETICA" SIZE="1" COLOR="000000">Send Email to Site Owner Email:</FONT></TD>
<TD>
<SELECT NAME="owner_email_flag">
<OPTION VALUE="Y" SELECTED>Yes</OPTION>
<OPTION VALUE="N">No</OPTION>
<OPTION VALUE="M">Maybe</OPTION>
</SELECT></TD>
</TR>
I get the owner_email to return correctly and update correctly, but a little lost on the select/option value.
Thanks!