Help for this page

Select Code to Download


  1. or download this
    foreach my $number ( 1 .. 25 )
      {
    ...
      # or, without $value
      # printf "q%d: %s\n", $number, param( "q$number" );
      }
    
  2. or download this
    my @array = ( undef, map { scalar param("q$_") } 1 .. 25 );