Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I guess I don't understand the matching criteria, and the idea of usinf POST to submit a form Thank Youuse LWP::UserAgent; $ua = LWP::UserAgent->new; my $req = HTTP::Request->new(POST => 'http://www.google.com/'); $req->content_type('application/x-www-form-urlencoded'); $req->content('match=?'); my $res = $ua->request($req); print $res->as_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
•Re: LWP post
by merlyn (Sage) on Jun 18, 2002 at 15:11 UTC | |
|
Re: LWP post
by smitz (Chaplain) on Jun 18, 2002 at 15:46 UTC | |
by moxliukas (Curate) on Jun 18, 2002 at 16:03 UTC | |
by Anonymous Monk on Jun 18, 2002 at 16:13 UTC | |
by moxliukas (Curate) on Jun 18, 2002 at 17:01 UTC | |
by dsheroh (Monsignor) on Jun 18, 2002 at 23:55 UTC | |
by kappa (Chaplain) on Jun 18, 2002 at 16:33 UTC |