GaijinPunch has asked for the wisdom of the Perl Monks concerning the following question:
I've made sure that $url and $post have the correct strings in them.my $ua = new LWP::UserAgent; my $req = new HTTP::Request POST => $url; $req->content_type('application/x-www-form-urlencoded'); $req->content($post); my $res = $ua->request($req); print $res->content;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: POST question ( . vs _)
by perrin (Chancellor) on Mar 28, 2006 at 03:57 UTC | |
by Anonymous Monk on Mar 28, 2006 at 04:47 UTC | |
by Anonymous Monk on Mar 28, 2006 at 05:50 UTC | |
by Anonymous Monk on Mar 28, 2006 at 06:02 UTC | |
by perrin (Chancellor) on Mar 28, 2006 at 15:30 UTC |