On Wed, 29 Aug 2001, Marc Power wrote:
> Hi, this is my first ever post here so please forgive me if
> my answer is obvious.
>
> my program has the lines:
>
> my $req = POST 'http://xxx.yyy.com',
> [ xxx => 'test1', proceed => '+Click+here+' ];
>
> my $content = $ua->request($req)->as_string;
>
> the output is:
>
> xxx=test1&proceed=%2BClick%2Bhere%2B
>
> a browser produces:
>
> xxx=test1&proceed=+Click+here+
>
> how can I inhibit the encoding please?
If you enter "+Click+here+" into a form and submit it, the browser
encodes it as "%2BClick%2Bhere%2B". If you enter " Click here " in the
form, the browser encodes it as "+Click+here+".
--
Liam Quinn