in reply to Re^2: How do I pull HTML form option values?
in thread How do I pull HTML form option values?
The code looks for "multiple":
which does not seem to be set anywhere.if (exists $self->{multiple}) { unshift(@{$self->{menu}}, { value => undef, name => "off"} +); $self->{current} = $checked ? 1 : 0; } else { $self->{current} = 0 if $
You will likely have to parse the raw html using HTML::TokeParser or the like, to extract the options.
See fellow un-answered sufferer at stackoverflow.
Memory fault -- brain fried
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How do I pull HTML form option values?
by beech (Parson) on Apr 04, 2018 at 21:55 UTC | |
by NetWallah (Canon) on Apr 05, 2018 at 05:49 UTC | |
by beech (Parson) on Apr 07, 2018 at 02:44 UTC |