in reply to WWW::Mechanize with optional fields
you can pass that on to submit_form easily:my %fields = ( name => "Richard", age => "12", location => "mars", forum_user => "xxxxx", forum_pass => "yyyyy", );
See also perldata and perlref$mech->submit_form( form_name => $search_form, fields => \%fields, # pass reference to %fields );
|
|---|