views:

9

answers:

1

I'm trying to build a page similar to www.bing-vs-google.com, but instead of bing and google, I want to populate it with several of my company's internally-used sites. This would function as a "universal search" for our employees to search across a variety of sites (all of which pass search queries via URL).

Has anyone seen or done this before? Any advice is appreciated.

+1  A: 

Simply include two iframes:

<iframe src="http://www.bing.com/search?q=foo"&gt;&lt;/iframe&gt;
<iframe src="http://www.google.com/search?client=firefox-a&amp;q=foo"&gt;&lt;/iframe&gt;

Where you replace foo with the search string and the domains with your internal search engines. You shouldn't expect neither google nor bing indexing your intranet pages so you need your own indexing engine.

Darin Dimitrov