Dave Faraldo wrote:
>
> > Why should anyone make requests with HTTP::Request->new? Why not just use
> > HTTP::Request::Common's GET and POST functions?
>
> The GET and POST functions are "syntactic sugar" -- under the hood,
> they use HTTP::Request->new(), too -- so I suppose it's a matter
> o
ncoded', 'multipart/form-data').
TMTOWTDI --
-=< Dave >=-
Original message follows:
-
> Date: Wed, 21 Mar 2001 14:53:22 -0700
> From: "Sean M. Burke" <[EMAIL PROTECTED]>
> Subject: generating requests
> At 12:51 AM 2001-03-21 -08
At 12:51 AM 2001-03-21 -0800, Jeff Orrok wrote:
>[...]
> my $req = HTTP::Request->new( POST => $_ );
> $req->content_type('application/x-www-form-urlencoded');
> $req->content('');
>[...]
Talking not just about your case specifically, but talking generally:
Why should anyone make requests