Help for this page

Select Code to Download


  1. or download this
    my @column_names = ('col1', 'col2','col3');
    my @values  = ('val1','val2','val3','val4','val5','val6');
    ...
    col2   val2   val5
    col3   val3   val6
    
  2. or download this
    my $c2 = @column_names;
    
    ...
            print "<td>$values[$i]</td>\n";
    }
    print qq(<tr>);