Mailing List Archive

Form checkboxes
Hi All,

I really love the feature of Embperl where it will automatically fill out a form
using the contents of %fdat. However, that doesn't seem to work with
checkboxes. Is this possible?

Thanks,

Wim.
Re: Form checkboxes [ In reply to ]
0 Wim Kerkhoff wrote about "Form checkboxes":
> Hi All,
>
> I really love the feature of Embperl where it will automatically fill out a form
> using the contents of %fdat. However, that doesn't seem to work with
> checkboxes. Is this possible?
It's there. Read the manpage for details.

Vladimir
RE: Form checkboxes [ In reply to ]
>
> I really love the feature of Embperl where it will automatically
> fill out a form
> using the contents of %fdat. However, that doesn't seem to work with
> checkboxes. Is this possible?
>

Your checkbox must have a name and a value, then it should work e.g.

<input type="checkbox" name="foo" value="bar">

Gerald