I’m trying to add a Google / In site only style of Search function as detailed in “Build Your Own Web Site the Right Way”
I’ve got a dummy page;
www.broadstairsfoodfestival.org.uk/Exhibitors_searchable.html
into which i dropped the code shown at the end of this message.
The Google search is fine, but when the site only option is exercised, it fails.
What have I overlooked?
jo
<!-- SiteSearch Google –>
<form method=“get” action=“http://www.google.com/search”>
<div id=“search”>
<label for=“q”>Search:</label>
<input id=“q” name=“q” size=“20” maxlength=“255” value=“” type=“text” />
<input name=“domains” value=“http://www.broadstairsfoodfestival.org.uk/” type=“hidden” />
<input name=“sitesearch” value=" http://www.broadstairsfoodfestival.org.uk/" checked=“checked” id=“mysite” type=“radio” />
<label for=“mysite”>Just this site</label>
<input name=“sitesearch” value=“” id=“www” type=“radio” />
<label for=“www”>WWW</label>
<input name=“btnG” value=“Go” type=“submit” />
</div>
</form>
<!-- SiteSearch Google –>