- or download this
use URI;
...
print($uri->as_string(), "\n");
# http://www.domain.com/?editions=D&editions=A&editions=H
- or download this
use LWP;
use HTTP::Request::Common;
...
# Content-Type: application/x-www-form-urlencoded
#
# editions=D&editions=A&editions=H
- or download this
>perl -MURI -le "print $URI::VERSION"
1.19
>perl -MLWP -le "print $LWP::VERSION"
5.64