my question maybe obscure but its very important for me . I have this perl code :
my $ua = LWP::UserAgent->new();
my $req = POST 'http://example.com',
[ phd => 'text' , go => 'submit'];
$content = $ua->request($req)->as_string;
print $content;
i want send the parameter (phd => text , go => submit) with a http proxy . what am i going to do ? Thanks in Advance