Help for this page

Select Code to Download


  1. or download this
    while($ref=fetchrow_arrayref()){
    print "@{$ref}\n";
    }
    
  2. or download this
    while($ref=fetchrow_arrayref()){
    push @ary,$ref;
    ...
    foreach (@ary){
    print "@{$_}\n";
    }