will this code make an LWP::Simple requst throgh LWP::UserAgent proxy ? :
require LWP::UserAgent;
use LWP::Simple;
my $ua = LWP::UserAgent->new;
$ua->timeout(5);
$ua->cookie_jar({ file => "$ENV{'HOME'}/lwp_cookies.dat" });
$x = "google.com";
$ua->proxy('http', "http://$x");
$content = get("http://flash.udaff.com/");
die "Couldn't get it!" unless defined $content;
print "Done\n";
Edit by Corion: I had to put <code> ... </code> tags around the parts of the post to make these look like Perl code. The advantage of doing so is that the post looks much better, both in the preview and in the final post.