in reply to Re: Re: WWW:Mechanize::FormFiller documentation
in thread WWW:Mechanize::FormFiller documentation

Ok, so all I have to do is take my originial forms and
add something like value="<TMPL_VAR NAME=FIELD_VALUE>" to
each input tag and then use the param() function to set each
value. Wow, that really is a lot easier than trying
to figure out how to use WWW::Mechanize::FormFiller. Thanks.
I'll try not to clog up the forms with any more questions tonight :)
  • Comment on Re: WWW:Mechanize::FormFiller documentation

Replies are listed 'Best First'.
Re: Re: WWW:Mechanize::FormFiller documentation
by The Mad Hatter (Priest) on Apr 16, 2003 at 04:33 UTC
    Yep, much easier. ;-) You'll probably want to make the tag <TMPL_VAR NAME=FIELD_NAME ESCAPE=HTML> so that HTML is escaped. If it isn't escaped, it could lead to problems. Anyway, glad to help.
      Thanks again :)