Help for this page

Select Code to Download


  1. or download this
    my @row;
    my %hash;
    while (@row = $sth5->fetchrow_array) {
       $hash{$row[0]} = \@row;
    }
    
  2. or download this
    my %hash;
    while (my @row = $sth5->fetchrow_array) {
       $hash{$row[0]} = \@row;
    }