View Single Post
Old 06-10-2003, 07:54 AM  
FuqALot
Confirmed User
 
Join Date: Dec 2001
Location: Malibu
Posts: 3,817
Try something like this.

#!/usr/bin/perl
use LWP::UserAgent;
$ua = LWP::UserAgent->new;
my $req = HTTP::Request->new(POST => 'http://www.site.com/submit.cgi');
$req->content_type('application/x-www-form-urlencoded');
$req->content('[email protected]&url=http://www.site.com');
my $res = $ua->request($req);
exit;
FuqALot is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote