Chris wrote:
> On Tue, 2 Jun 1998, Jens B. Jorgensen wrote:
>
> > "POST" requests should be quite simple to do in perl. Here's what a post
> > request
> > looks like from the client:
> >
> >
> > POST / HTTP/1.0
> > Content-type: application/x-www-form-urlencoded
> > Content-length:
On Wed, 3 Jun 1998, Chris wrote:
> Sorry, I think we've got confussed. I know perl very well, and as
> Ralph said it has proved invaluable. However, what I want to do is
> ~send~ something to a html server via a POST operation.
what you want is LWP (the libwww-perl package).
I have used this t
On Tue, 2 Jun 1998, Jens B. Jorgensen wrote:
> "POST" requests should be quite simple to do in perl. Here's what a post
> request
> looks like from the client:
>
>
> POST / HTTP/1.0
> Content-type: application/x-www-form-urlencoded
> Content-length: 24
>
> foo=fdsaf&bar=j
When Chris wrote, I replied:
I'd use pure perl for this, but if you don't already know perl5
the learning curve would be pretty steep. If you commit to the
learning, though, you'll have expanded your toolkit in a BIG way.
>
> Hi all,
>
> This is off the topic, but I figured I could ask anyhow.
"POST" requests should be quite simple to do in perl. Here's what a post request
looks like from the client:
POST / HTTP/1.0
Content-type: application/x-www-form-urlencoded
Content-length: 24
foo=fdsaf&bar=jk%3Blasdf
The "variables" are passed in the body of the request. You
5 matches
Mail list logo