Hi I've a webpage and want to integrate google search into that page.
Can u people guide me how to do that?
Actually i tried with the code given by the google.
like this
<form action="http://www.duckyvideos.com" id="cse-search-box">
<div>
<input type="hidden" name="cx" value="partner-pub-9481442241155955:7j2htu-qsi5" />
<input type="hidden" name="cof" value="FORID:10" />
<input type="hidden" name="ie" value="ISO-8859-1" />
<input type="text" name="q" size="31" />
<input type="submit" name="sa" value="Search" />
</div>
</form>
<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
<div id="cse-search-results"></div>
<script type="text/javascript">
var googleSearchIframeName = "cse-search-results";
var googleSearchFormName = "cse-search-box";
var googleSearchFrameWidth = 800;
var googleSearchDomain = "www.google.com";
var googleSearchPath = "/cse";
</script>
<script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script>
I placed the above code in my webpage. But it is not showing any results.
Whats the problem in that