Results 1 to 3 of 3

Thread: how make your pro search engine by using google as aol

  1. #1
    Join Date
    Nov 2007
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default how make your pro search engine by using google as aol

    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

    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

  2. #2
    Join Date
    May 2007
    Location
    England, UK
    Posts
    235
    Thanks
    3
    Thanked 6 Times in 6 Posts

    Default

    You could probably do somethig similar with this script:

    http://www.dynamicdrive.com/dynamici...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.

    HTML Code:
    <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>

  3. #3
    Join Date
    Nov 2007
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    gr8 help
    thanks so much

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •