Help for this page

Select Code to Download


  1. or download this
    @{$tbls{'12p'}} =  [ 't72', 't73', 't74', 't75', 't76', 't77' ];
    
  2. or download this
    $tbls{'12p'} = [ 't72', 't73', 't74', 't75', 't76', 't77' ];
    
  3. or download this
    $tbls{'12p'} = [ qw/ t72 t73 t74 t75 t76 t77 / ];
    
  4. or download this
    for $b (0 .. $#price) {
    ...
    
  5. or download this
    for my $price (@price) {
        $sql = 'SELECT respondent FROM';
    ...
            ...
        }
    }