in reply to Problems with HTML::Form 1.00

Since I can't update the module, I am stuck looking for other solutions.
Install the module if you can't update it.

How would I do this with HTML::Parser? The docs left me confused. Thanks.
Confused how? HTML::Form does it, so just copy that.

Replies are listed 'Best First'.
Re: Re: Problems with HTML::Form 1.00
by Anonymous Monk on Jan 21, 2004 at 01:10 UTC
    Install the module if you can't update it.

    Um, same thing.

    Confused how? HTML::Form does it, so just copy that.

    HTML::Form 1.00 does NOT do this.

      Um, same thing.
      No its not.
      Confused how? HTML::Form does it, so just copy that.
      Yes it does. HTML::Form uses HTML::TokeParser. HTML::TokeParser uses HTML::Parser. Therefore HTML::Form uses HTML::Parser.

      You still don't explain how you're confused.

        In HTML::Form version 1.00, you CANNOT get the values of input tags with the same name. You can only get one of the values, the last input tag read. Please look at the documentation if you don't believe me. This is a fact. The latest version can do so using a param method. For example, @values = $form->param($name). I even tried copying the code from the new module, but ended up with a mess . . .

        If there's any other way of doing this without resorting to regex, then I would like to know how. Thank you so much. ;)