in reply to How to check value of checkbox on form submit?
That will give you the value, if it's defined, or let you throw an error or rerequest the data, if necessary.if (defined ($cb_value = $input{checkbox1}) { # do something } else { # do something less exciting }
|
|---|