Re: Making a HTTP POST

2007-03-29 Thread Peter Scott
On Thu, 29 Mar 2007 09:00:02 +0800, Jeff Pang wrote: >>What's the best way to go about making an HTTP POST? >>I want to retrieve a dynamic page that is only accessable via a POST. >>Is there a module (simple one?) that deals with this? > > From 'perldoc lwpcook', > > use HTTP::Request::C

Re: Making a HTTP POST

2007-03-28 Thread yitzle
Looks good! Thanks for the code :) On 3/28/07, Jeff Pang <[EMAIL PROTECTED]> wrote: > >What's the best way to go about making an HTTP POST? >I want to retrieve a dynamic page that is only accessable via a POST. >Is there a module (simple one?) that deals with this? From 'perldoc lwpcook',

Re: Making a HTTP POST

2007-03-28 Thread Jeff Pang
> >What's the best way to go about making an HTTP POST? >I want to retrieve a dynamic page that is only accessable via a POST. >Is there a module (simple one?) that deals with this? >From 'perldoc lwpcook', use HTTP::Request::Common qw(POST); use LWP::UserAgent; $ua =

Re: Making a HTTP POST

2007-03-28 Thread Tom Phoenix
On 3/28/07, yitzle <[EMAIL PROTECTED]> wrote: What's the best way to go about making an HTTP POST? Many people use Microsoft Internet Explorer. You may have access to better software. I want to retrieve a dynamic page that is only accessable via a POST. Is there a module (simple one?) that d

Making a HTTP POST

2007-03-28 Thread yitzle
What's the best way to go about making an HTTP POST? I want to retrieve a dynamic page that is only accessable via a POST. Is there a module (simple one?) that deals with this?