in reply to How do I check if checkbox in the form was checked or not?
#!/usr/bin/perl -w use strict; my $q = CGI->new(); if ($q->param('check_box_name') { # checkbox was checked } else { # checkbox left unchecked } [download]
cLive ;-)