in reply to Re: form fill simulation with perl
in thread form fill simulation with perl

LWP::Simple doesn't support the POST method.
Well, it sorta does, with a couple of extra steps:
use LWP::Simple qw($ua); my $content = $ua->post("http://www.example.com", [first_name => 'Randal', last_name => 'Schwartz'])->content;
Of course, all you're getting here is a LWP::UserAgent created for you, and the right modules brought in with one use line.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.