in reply to Re^3: LWP post method, mutliple parameters
in thread LWP post method, mutliple parameters

I believe it accepts either an arrayref or a hashref there. You should be using an array ref though, or you won't be able to have multiple values for a given param. That's why it accepts an arrayref there.
  • Comment on Re^4: LWP post method, mutliple parameters

Replies are listed 'Best First'.
Re^5: LWP post method, mutliple parameters
by davidov0009 (Scribe) on Dec 24, 2007 at 04:46 UTC
    This code confused me in the post() method.
    [ name => value, name2 => value ]
    Is that an arrayref with hash values?

    use strict; use CGI;