Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Best way to implement search function? 2

Status
Not open for further replies.

frozenpeas

Technical User
Sep 13, 2001
893
CA
Hi,

What is the best way to build a search function into a website? If a user wanted to search my website for "spoons", what is the best way to handle the query and results? What is actually queried to get results? In this scenario, imagine that my website has both static and dynamic content.

Thanks!

frozenpeas
--
Micfo.com Affiliate Program
 
I would build or just use what other people have already built. Have a look at Of course, if you have unlimited funds get yourself a google box (it really is yellow...)
 
Code:
<!-- SiteSearch Google -->
<div style="width:220px">
<form method="GET" action="[URL unfurl="true"]http://www.google.com/search">[/URL]
<input type="hidden" name="ie" value="UTF-8" />
<input type="hidden" name="oe" value="UTF-8" />
<table cellpadding="0px" cellspacing="0px" style="background:white">
<tr><td><a href="[URL unfurl="true"]http://www.google.com/">[/URL]
<img src="[URL unfurl="true"]http://www.google.com/logos/Logo_40wht.gif"[/URL] border="0px" 
 margin="0px" alt="Google"></a></td></tr><tr>
<td valign="middle" style="font: normal bold x-small arial, sans-serif"> 
<input type="radio" name="sitesearch" value="" /> web
<input type="radio" name="sitesearch" value="yoursite.com" checked />
 this site</td></tr><tr><td colspan="2">
<input type="hidden" name="domains" value="[URL unfurl="true"]http://yoursite.com"[/URL] />
<input type="text" name="q" size="31" maxlength="255" value="" />
<input type="submit" name="btnG" value="Search" />
</td></tr></table></form></div>
<!-- SiteSearch Google -->

Clive
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top