in reply to Getting all the parameters of CGI request

It may not list out the params, but it sure will help filling out the form: WWW::Mechanize. Most of the values will have defaults, so you'll only have to set one or two of them and you're done.

-Paul

  • Comment on Re: Getting all the parameters of CGI request

Replies are listed 'Best First'.
Re^2: Getting all the parameters of CGI request
by ikegami (Patriarch) on Feb 02, 2010 at 19:30 UTC

    It may not list out the params,

    Sure it does. $mech->forms gets you the forms, and $form->inputs gets you a form's inputs.