Google Search On Your Site
One of the first things many people do when arriving on a new website is look for the search button. You can create your own database and search functionality if you know how, yes. However, if you don't have any great need for something intricate, Google works great. With this little snippet of code, you can enter a keyword, press the little button, and instantly see related information from your site only.
This is obviously convenient for your visitors. It can also be helpful for you. You can search for information on your site and easily see what and how Google lists.
Snippet
<input type="text" name="q" value="Search" maxlength="255"/>
<input type="submit" name="gosearch" value="Search" />
<!--hidden variables-->
<input type="hidden" name="domains" value="http://yourdomain.com"/>
<input type="hidden" name="sitesearch" value="http://yourdomain.com" />
</form>
Just copy and paste this snippet into your html code and change the http://yourdomain.com to reflect your domain name and desired subdirectory. Any questions or comments, Contact Us.
Example - Searching XtremeOutdoorRental.com
Word of Caution
Google Ads are still active on these pages. So if somebody is on your page that sells frisbess and is having a tough time finding the frisbee they want, searches and finds a google ad for somebody else, they might leave. I'm pretty sure there is a way to fix this. Let us know if you know it.
