in reply to CGI::param, how to convert parameters into a hash

my %params = $cgi->Vars();

Note that parameters with multiple values come out as packed strings, see the CGI documentation.

C.

Replies are listed 'Best First'.
Re^2: CGI::param, how to convert parameters into a hash
by jeanluca (Deacon) on Oct 19, 2005 at 11:32 UTC
    How do 'multivalued CGI parameters' show up in an URL, can you give me an example ?

    Cheers
    Luca
      Yup..

      foo?colour=red;colour=blue;colour=green

      For example if you allow multiple selections from an option/select group, then thats what you'll get.

      C.

        Thanks a lot!!
        Luca