Re: arguments in the call of cgi

John Beaman (JRB@w3f.com)
Thu, 13 Jul 2000 09:34:53 -0700


> Jean Schurger wrote:
> 
> This may be the answer:
> 
>   use HTTP::Request::Common qw(POST);
>         use LWP::UserAgent;
>         $ua = new LWP::UserAgent;
> 
>   my $req = POST `http://www.pagesblanches.fr',
>                       [ name => `John', city => "Seattle" ];
>   print $ua->request($req)->as_string;
> 
>                                         Thanks