Log in

View Full Version : how make your pro search engine by using google as aol



Basim
11-01-2007, 08:13 PM
hello
I have 3 day search for this on web
now google offer custom search engine
so If you build your custom search engine from Google Code search (http://www.google.com/coop/cse/)

well i build my custom search engine and this is url
http://search.3walim.com

now let say I want that I want the looking of page be as search bar on aol news

http://news.aol.com

I know aol have a custom search and dveloped by google
but what I want for example on aol news search bar
how they make it
* News
* Web
* Images
* Video
* Local
* More »
and when you click on web or video it still on the page how this doing?

also how make the defualt search on news and when you go for example on aol movie you note the defualt is movie


I’m new on this so sorry for this question
and i hope help me to get it


thanks in advance

jc_gmk
11-02-2007, 03:29 PM
You could probably do somethig similar with this script:

http://www.dynamicdrive.com/dynamicindex17/tabcontent.htm

it will give you the tabs like AOL's search box then just use differant forms in each of the tabs e.g.



<ul id="searchtabs" class="shadetabs">
<li><a href="#" rel="News" class="selected">News</a></li>
<li><a href="#" rel="Web">Web</a></li>
<li><a href="#" rel="Images">Images</a></li>
</ul>

<div id="News" class="tabcontent">
<form action="search.php?category=news" method="get">
<input type="text" name="query">
<input type="submit" value="search">
</form>
</div>

<div id="Web" class="tabcontent">
<form action="search.php?category=web" method="get">
<input type="text" name="query">
<input type="submit" value="search">
</form>
</div>

<div id="Images" class="tabcontent">
<form action="search.php?category=images" method="get">
<input type="text" name="query">
<input type="submit" value="search">
</form>
</div>

Basim
11-03-2007, 02:57 AM
gr8 help
thanks so much