in reply to Re: Re: POSTing from one script to another
in thread POSTing from one script to another

Ah, concentrating on the uploader, I see that you are specifying Content-type as 'form-data'.

That is incorrect. It should be 'multipart/form-data'.

  • Comment on Re: Re: Re: POSTing from one script to another

Replies are listed 'Best First'.
Re: Re: Re: Re: POSTing from one script to another
by Anonymous Monk on May 05, 2004 at 15:24 UTC
    Are you sure? I got the syntax straight from Gisle Aas's HTTP::Request::Common doc...
Re: Re: Re: Re: POSTing from one script to another
by Anonymous Monk on May 05, 2004 at 15:26 UTC
    Anyway I believe form-data and multipart/form-data are interchangable, since the request header shows "Content-type: multipart/form-data". So I assume both get transposed into the correct Content-type header.