Gossamer Forum
Home : Gossamer Threads Inc. : Custom Modification Jobs :

Re: Private labeled search

Quote Reply
Re: Private labeled search In reply to
Actually, the short answer is no.

You'd have to have a script that ran on their site, that made the request as a "backend" process. It recieved the results from your site as a text string, and output it as standard cgi-generated html from their site.

But that is the only way to hide the referers.

Basically, their script would send your search_remote.cgi the query string, plus a return location, and your script would have to return the parsed, html output to their search.cgi script, which would in effect, simply print out something like:


print "Content-type: text/html\n\n";
print <<__SEARCH_RESULTS__;
<HTML>
<HEAD><TITLE>stuf... </TITLE></HEAD>
<BODY BGCOLOR="#FFFFFF">

... more stuff

$values_returned_from_your_site

... more stuff
</BODY>
</HTML>
__SEARCH_RESULTS__
;



The values of $values_returned_from_your_site would be filled from the
input value you sent back to the script.

It's a song and dance, but it would probably work. Extra loads on your machine, and dealing with the spanning pages would have to be done creatively,
and passed in from sending script, so you might have to actually return a bunch of parameters, including the span tags.








PUGDOGŪ Enterprises, Inc.
FAQ:http://LinkSQL.com/FAQ
Forum:http://LinkSQL.com/forum
Subject Author Views Date
Thread Private labeled search surfsafely 8509 Jun 12, 2001, 12:20 PM
Thread Re: Private labeled search
BryanL 8242 Jun 15, 2001, 5:49 AM
Thread Re: Private labeled search
surfsafely 8271 Jun 15, 2001, 4:45 PM
Thread Re: Private labeled search
pugdog 8195 Jun 17, 2001, 2:55 PM
Thread Re: Private labeled search
surfsafely 8175 Jun 17, 2001, 8:01 PM
Thread Re: Private labeled search
pugdog 8184 Jun 17, 2001, 9:23 PM
Post Re: Private labeled search
surfsafely 8080 Jun 19, 2001, 4:33 PM
Thread Re: Private labeled search
surfsafely 8059 Jun 22, 2001, 10:11 AM
Post Re: Private labeled search
pugdog 8012 Jun 22, 2001, 11:29 PM
Thread Re: Private labeled search
Karen 8145 Jun 17, 2001, 9:40 PM
Post Re: Private labeled search
pugdog 8169 Jun 17, 2001, 9:49 PM