in reply to Re: LWP & POST
in thread LWP & POST

Thanks but perhaps you misunderstood my question. The form I need to post looks like this.
<form action="www.server.com/form.html"> <input name="/process.create" value="loc=AL&cat=4"> </form>
The name of the parameter has to be "/process.create" and the value is "loc=AL&cat=4". I don't know why they did it this way but that's what I have to post. Is there anyway for me to post this form via LWP?

Replies are listed 'Best First'.
Re: Re: Re: LWP & POST
by MeowChow (Vicar) on Feb 15, 2001 at 12:45 UTC
    Then the following should work:
    $request = POST 'http://www.server.com/form.html', [ 'process.create +' => 'loc=AL&cat=4' ];
       MeowChow                                   
                   s aamecha.s a..a\u$&owag.print
      Thank you so much, that solved the problem. :)