It sounds like the script is expecting the data to be submitted as multipart/form-data (which uses boundaries), not the default application/x-www-form-urlencoded (the module's default). Looking at the <form> element's enctype attribute will tell you what the script requested. Fortunatly, it's easy to tell HTTP::Request::Common to use multipart/form-data:
my $req = POST( 'http://url_to_post' , Content_Type => 'form-data' , Content => [ username => "value" , usermail => "value" ] );
In reply to Re: Submitting queries to server
by ikegami
in thread Submitting queries to server
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |