I am developing a script that uses WWW::Mechanize. Some users will have more or less HTML form fields than others, so my script has to accomodate for that.

I have variables like this for data

$var1_a = "name"; $var1_b = "Richard"; $var2_a = "age"; $var2_b = "12"; $var3_a = "location"; $var3_b = "mars";
Now some of these vars will NOT be used and will be set to ="". A's are the field names, B's are the values.

Is there a better way to set this up? Preferably a way that the user can add INFINITE form fields for WWW::Mechanize to pull through?

Other question is a two parter. If using MY method of hard coding the vars, how do I transfer them to my $mech call the most efficient way? I don't suppose I can put if conditionals in the FIELDS() to see whether certain fields were used.

$mech->submit_form( form_name => $search_form, fields => { $forum_user => $username, $forum_pass => $password, } );
2nd question is, if you have a better way of storing the data and looping over the form fields/values, can you post an example?

In reply to WWW::Mechanize with optional fields by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.