in reply to Re: Proxy using Perl
in thread Proxy using Perl
you're actually requesting the URL twice in your code for every request to the page,
replace the $request line into this:
my $request = new HTTP::Request;
The rest seems to work. Oh yeah, notice the 'my'. try using strict mode when programming cgi's
glenn