Hi all,
I have three scripts: products.php, companies.php and categories.php
Each script takes many search parameters, perform the search and display the results.
The search forms are in 3 pages: producys.html, companies.html and categories.html
In the Home page i have a form with:
1) A keywords field
2) A radio button (labeled: Products)
3) A radio button (labeled: companies)
4) A radio button (labeled: categories)
The radio buttons actually refer to tables.
The idea is that a user will type in search words / keywords in the the form text field, then choose one radio button, and a script will search and display the results. But i want to pass the search keywords to one of the existing scripts (products.php, companies.php, categories.php), based on which radio button is selected. Also i want the selected script to search using only the keywords passed, instead of the many parameters it usually uses.
Any ideas please?