in reply to What's the REAL DEAL with Perl $cgi->checkbox()

Historically, the CHECKED keyword in HTML does not have a value -- it is simply a flag to the checkbox to indicate that it is turned on. If the flag is there, it is on, if not, it is off. The value (if any) is irrelevant. This is an HTML thing, not related to Perl itself.

--MidLifeXis

  • Comment on Re: What's the REAL DEAL with Perl $cgi->checkbox()