#!/usr/bin/perl use CGI; use Data::Dumper; my $q = new CGI; print $q->header(), '
', $q->escapeHTML(Dumper $q), ''; # this will give you all the values of the checkboxes # called param_name that were checked separated by spaces print join ' ', $q->param('param_name');