in reply to My CGI to your CGI

Taken (and modified) from the LWP documentation at (www.perldoc.com)

POST a search query to lycos, and get the results:
# Create a user agent object use LWP::UserAgent; $ua = new LWP::UserAgent; $ua->agent("AgentName/0.1 " . $ua->agent); # Create a request my $req = new HTTP::Request GET => 'http://www.lycos.com/srch/?lpv=1&loc=searchhp&query=Something'; $req->content_type('application/x-www-form-urlencoded'); $req->content('match=www&errors=0'); # Pass request to the user agent and get a response back my $res = $ua->request($req); # Check the outcome of the response if ($res->is_success) { print $res->content; } else { print "Bad luck this time\n"; }