motomuse has asked for the wisdom of the Perl Monks concerning the following question:
For example, here's http://www.elfhill.com/foo.cgi:
Now, if you try to click on any link there, elfhill.com will spit back a 404.use HTTP::Request::Common qw( POST ); use LWP::UserAgent; print "Content-type:text/html\n\n"; my $ua = new LWP::UserAgent; my $req = POST 'http://perlmonks.org/index.pl', [ node_id => '479' ]; my $res = $ua->request($req)->content; if ($res->is_success) { print $res->content; } else { print $res->error_as_HTML; }
How do I tweak the code so that I'm /actually/ at perlmonks, rather than elfhill?
Thanks,
- Muse
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: LWP strikes again!
by repson (Chaplain) on Jan 06, 2001 at 10:35 UTC | |
Re: LWP strikes again!
by chipmunk (Parson) on Jan 06, 2001 at 10:28 UTC | |
Re: LWP strikes again!
by merlyn (Sage) on Jan 06, 2001 at 12:16 UTC | |
Re: LWP strikes again!
by motomuse (Sexton) on Jan 09, 2001 at 01:51 UTC |