#!/usr/bin/perl -w use LWP::UserAgent; $ua = LWP::UserAgent->new; $ua->agent('Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)'); use HTTP::Request::Common qw(POST); my $req = (POST 'http://url_to_post', [username => "value", usermail => "value"]); $request = $ua->request($req); $content = $request->content; print $content; #### The following error has occured getting your search details: No boundary= in CONTENT_TYPE (application/x-www-form-urlencoded) [M00055] Have you tried the browser compatibility test page?