I am trying to creat a search form that has multiple text boxes. This works accept I am getting an empty drop down at the of the text box. What should I be using instead of select?
<tr>
<td align="right"><b>Enter Account Criteria </b><input type="Text" name="keyword" size="20"><select name="where"> <option value="1"></td></select>
</tr>
<tr>
<td colspan="2" align="right"><input type="Submit" name="submit" value="Search"></td>
</tr>
Instead of having a drop down. I want to have multiple text boxes to enter search criteria. Thanks for any and all help.