Code:
<select name="Charter_Type" tabindex="5" class="selmenu">
<option value="">Please select</option>
<option value="8-Hours" <?php if (@$fields["Charter_Type"] == "8-Hours") echo "selected"; ?>>8-Hours</option>
<option value="6-Hours" <?php if (@$fields["Charter_Type"] == "6-Hours") echo "selected"; ?>>6-Hours</option>
<option value="4-Hours" <?php if (@$fields["Charter_Type"] == "4-Hours") echo "selected"; ?>>4-Hours</option>
<option value="General-Inquiry" <?php if (@$fields["Charter_Type"] == "General-Inquiry") echo "selected"; ?>>General-Inquiry</option>
</select>
Thanks in advance for any help with this problem, Gene