I will appreciate some assistace with a combo search box
Now I have two separate boxes to search for companies(search_companies.php) and products (search_products.php)
They work fine as long as I have two boxes.
I want to combine these into one box so I have
Enter Keyword >Select where to search >Go
I have tried using a list box like:
<input type=txt value=keyword>
Select ....
<option name=company value=search_companies.php>search for a company</option>
<option name=product value=search_products.php>search for a product</option>
<...value=submit>
Problem
1. Do I need to create a separate search file for this to work.
2. I have tried javascript without luck.
Could someone please point to the right direction.
Thank you