in reply to Re: Re: Problems with HTML::Form 1.00
in thread Problems with HTML::Form 1.00

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.

  • Comment on Re: Re: Re: Problems with HTML::Form 1.00

Replies are listed 'Best First'.
Re: Re: Re: Re: Problems with HTML::Form 1.00
by Anonymous Monk on Jan 21, 2004 at 21:03 UTC
    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. ;)