"Dorcel marc" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello,
> I'm using an existing program that perform HTTP
> Request. In a POST request I found
> this :
> my $request = POST($URL
>                    Content => [ 'user'   => $user,
>                                 'pwd' => $pwd,
>                                 'no_auth'  => '1',
>                                 'submit_login'=>'Login',
>                               ],
>                   );
>
> Can someone says me what means "no_auth" ??

POST is a method from the HTTP::Request::Common module. You would call it
like this to submit HTML <form> data. Input field values are entered in
'field_name => input_value' pairs. There must be a field on the form named
'no_auth', whose function I cannot tell.

HTH,

Rob




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to