#!/usr/local/bin/perl
use LWP::Simple;
print "Content-type: text/html\n\n";
$url = $ENV{'QUERY_STRING'};
$content = get ($url);
print $content;
#mystery: why won't the next line work?
#getprint $url;
#print "<br>This text comes from the last line of the proxy.pl script itself. . ./n/n";
