I put a google web search box on my site using
Code:
<center>
<FORM method=GET action="http://www.google.com/search">
<center>
<TABLE bgcolor="#FFFFFF"><tr><td bordercolor="#0000FF">
<A HREF="http://www.google.com/">
<IMG SRC="http://www.google.com/logos/Logo_40wht.gif"
border="0" ALT="Google" align="absmiddle" width="128" height="53"></A>
<INPUT TYPE=text name=q size=25 maxlength=255 value="">
<INPUT type=submit name=btnG VALUE="Google Search">
</td></tr></TABLE>
</center>
It works perfectly.
Im wanting to put a froogle and a images search on the same page as this search. So for the google images i use the same thing, just a different action=.
Code:
<FORM method=GET action="http://www.google.com/images">
And it works prefectly when its not on the same page as the other google web search. When i stick it with the regular web search it acts a web search and not as an images search. How do i stick it with the web search and get it to work?
|