Google AdSense for Search has a "Open results within my own site" option, which allows you to display search results within pages on your own site using javascript. By default, it relies on a "q=" GET parameter, which conflicts with Drupal.
You can get around this problem by renaming Google's "q" parameter to "as_q"
- Change
<input type="text" name="q" size="31" maxlength="255" value="" id="sbi"></input>
to<input type="text" name="as_q" size="31" maxlength="255" value="" id="sbi"></input> - If you are linking to queries directly, change:
http://example.com.....&q=some+search+string&sa=Google+Search&.....
tohttp://example.com.....&as_q=some+search+string&sa=Google+Search&.....
(change example.com to your own domain name)
