PDA

View Full Version : weird thing I'm trying to do


beekeeper
05-06-2005, 12:41 PM
A while ago i took the google homepage and redesigned it to my liking. I added more links, dark background and such...
So what i did also was to take the code that made it search google from where it was on it's server and changed it so it would search www.google.com when i entered soemthing. So basically i had my own google page when i started firefox.
Ok, so now I lost it, my HD crapped out and i want to rebuild that but it looks like there is some exotic script and i can't figure out how i had it look up google.
Any one know how i could make a form use googles search?

Thanks in advance :)

Chroder
05-06-2005, 05:22 PM
<form action="http://www.google.com/search" method="get" name="f">
<input type="hidden" name="hl" value="en" />
<input type="text" name="q" value="" />
<input type="submit" name="BtnG" value="Search" />
</form>
That should do it.

beekeeper
05-07-2005, 12:27 PM
cool, that works perfect, I Don't know why I thought it was a lot more complex than it was.

Thanks