Help for this page

Select Code to Download


  1. or download this
    use strict;
    use CGI;
    ...
    
    ## This will get the 'value'
    my $selected_value = $query->param('color1');
    
  2. or download this
    my @selected_value = $query->param('color1');