Posted by Steven Saunderson on 11/15/06 20:22
On 14 Nov 2006 23:37:08 -0800, f8lerror@gmail.com wrote:
> Okay,
> You know how you can use google to search for things and use
> +description or -adult stuff like that
> how can I have a user enter whatever into a form and add the input to
> the end of a search string that I made up I either get an error from
> google or a blank google page.
>
Can you try hidden fields before or after your text field ?
<form method=get
action="http://www.google.com/search">
<input type="hidden" name="h1" value="en">
<input type="hidden" name="lr" value="">
<input type="hidden" name="safe" value="on">
<input name="s" size=30>
<input type=submit>
</form>
--
Steven
[Back to original message]
|