PDA

View Full Version : How to make toolbar to my web site


bmwmpower
04-18-2004, 02:30 PM
Any one can help me
How I can make or create toolbar for my web site

oracleguy
04-18-2004, 07:21 PM
You need to explain yourself better, be more specific.

bmwmpower
04-19-2004, 09:36 AM
explain yourself better :confused:


what you mean ???


My name Tamer from Egypt what else you need to know

Eskimo
04-19-2004, 10:05 AM
:confused:


what you mean ???


My name Tamer from Egypt what else you need to know
Just a few things, like what you mean when you say "toolbar".

If you want help, you will need to explain what you want, what your end result is.

bmwmpower
04-19-2004, 10:15 AM
ohhhh ok I am so sorry I don't understand :(


I need create toolbar like google and yahoo but for any web site
The user can search in my web site like google

I hope u can understand what i want sorry i know my language not good

Keltoi
04-19-2004, 12:40 PM
Don't know about a tool bar but I have in the past adapted the "browser buttons" which is essentially a peice JavaScript. I was lucky as the search facility I had incorporated into the site was very similar to Googles (I.E. based on one query string).

Head on over to http://www.google.co.uk/options/winexplorer.html

Copy the shortcut for "Google Search" into notepad and edit accordingly. :thumbsup:

bmwmpower
04-24-2004, 11:59 AM
Sorry Man i don't mean that i need software to create toolbar like google

glenngv
04-26-2004, 07:14 AM
You mean putting google/yahoo search form in your pages?

<form name="googleForm">
Text to search:
<input type="text" maxlength="256" name="keyword" />
Search Engine:
<select name="engine">
<option value="http://www.google.com/search?q=">Google</option>
<option value="http://search.yahoo.com/bin/search?p=">Yahoo</option>
</select>
<input type="button" value="Search" name="btn" onclick="location.href=this.form.engine.options[this.form.engine.selectedIndex].value+escape(this.form.keyword.value)" />
</form>

That will search the specified keyword using the selected search engine and the results are displayed in the current window. If you want the results to be displayed in a new window, use this Search button instead.

<input type="button" value="Search" name="btn" onclick="window.open(this.form.engine.options[this.form.engine.selectedIndex].value+escape(this.form.keyword.value))" />