in reply to post data to a remote cgi script with a perl script?
use strict; use HTTP::Request::Common; use LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->request(POST 'http://somewhere/foo.cgi', [foo => "bar", bar => "foo"]); [download]