Click to See Complete Forum and Search --> : web development


tanya03l
07-08-2004, 11:50 PM
How does one make a search box on their website and what does the HTML coding look like? Please help

Thanx

jdavia
07-09-2004, 12:56 AM
you will find it here

http://www.hostcompanies.com/freecode.htm

myfish
07-19-2004, 05:43 AM
...and check out Accumo Classifier (http://www.accumo.com/product.html). It can add clustering feature to give your user a enhanced search experience

tanya03l
07-26-2004, 12:04 PM
Hi

I veiwed the HTML coding to be put into my website to make a search. How would this search only involve contents with in my web site?

thank you

Klyve1
08-09-2004, 12:42 PM
Try this:

<form method="get" action="http://www.google.com/custom">
<table bgcolor="#FFFFFF" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><a href="http://www.google.com/custom/"><img src="http://www.google.com/logos/Logo_40wht.gif" border="0" alt="Google" align="absmiddle" /></a></td>
<td><input type="text" name="q" size="25" maxlength="255" value="" />
<input type="submit" name="btnG" value="Google Search" />
<input type="hidden" name="cof" value="GL:0;" />
<font size="-1">
<input type="hidden" name="domains" value="www.yourdomain.com" />
<br />
<input type="radio" name="sitesearch" value="" />
WWW
<input type="radio" name="sitesearch" value="www.yourdomain.com" checked />
www.yourdomain.com <br />
</font> </td>
</tr>
</table>
</form>