Copy link to clipboard
Copied
I have a web page that I want a person to enter a word and search the database I have through Coldfusion or have google perform a search on my site. How do I get it to search one or the other.. The code I have so far is below
<CFFORM name="formsearch" method="post">
Copy link to clipboard
Copied
One way I see for this to work is for the form action to change depending on the search option selected, one value sending the request to your page for processing, the other to Google's page for processing. This is fairly simple to do with JavaScript and is well documented on the internets.
Another way could be to use <cfhttp...> tags on your action page to forward the request to Google for process if desired and outputing the results from the request.