Returning results from several sites on different servers is relatively simple. Install a copy of Normans script on each server then on whichever server you wish to use to query add the following lines into the script:-
use LWP::Simple;
getprint("http://www.myurl.com/cgi/myscript.pl");
Insert it after the print lines and it will display the results from the relevant site. Insert this for each server you wish to query.
Comment