I have a search form script that works well. It has 1 input text box and 4 drop down selection options.The options works with keywords to search my database. Script below. Instead of having the select wich fields to search from the drop down. I want to have 1 text input for each option with only 1 submit button. Any ideas or suggestions appreciated.
Current script:
<!-- main menu -->
<table border="1" width="100%" cellspacing="0" cellpadding="0">
<tr>
<form action="sk.php" method="GET">
<tr>
<td align="right"><b>Enter Account Criteria </b><input type="Text" name="keyword" size="20"></td>
</tr>
<tr>
<td align="right"><b>Search </b><select name="where">
<option value="1">Account Number</option>
<option value="2">Account Name</option>
<option value="3">Account Rep</option>
<option value="4"selected>All</option>
</select></td>
</tr>
<tr>
<td colspan="2" align="right"><input type="Submit" name="submit" value="Search"></td>
</tr>
</form>
</td>