Help for this page

Select Code to Download


  1. or download this
    my $ref = $sth->fetchall_arrayref();
    
    my $second_name = $ref->[1]->[1];
    
  2. or download this
    my $ref = $sth->fetchall_arrayref();
    
    foreach my $inner (@$ref){
         print join ("\t", @$inner), "\n";
    }