Help for this page

Select Code to Download


  1. or download this
    my @C;
    for (my $i=0; $i< $msgcount; $i++) {
     $C[$i] = param("C$i");
    }
    
  2. or download this
    my @C = map { param("C$_") } 0..$msgcount - 1;