Help for this page

Select Code to Download


  1. or download this
    use CGI qw/:standard/;
    my %formdata = map { $_ => [ param( $_ ) ] } param;
    
  2. or download this
    # The following is clearer for me:
    
    ...
    foreach ( @$formdata{ 'in_colors' } ) {
        # do something
    }