Help for this page

Select Code to Download


  1. or download this
    my @section;
    while(my $r = $db->fetchrow) {
        push @section, $r if $r->{name} =~ /^A/i;
    }
    
  2. or download this
    my @section = grep { $_->{name} =~ /^A/i } $db->fetchrows;