Help for this page

Select Code to Download


  1. or download this
    while ($row=$sth->fetchrow_hashref) {
      foreach $col (%{$row}) {
        print "$col: ".$$row{$col}."\n";
      }
    }
    
  2. or download this
    foreach $col (keys %{$row}) {