Help for this page

Select Code to Download


  1. or download this
    while (my $hash_ref = $SQLBuy->fetchrow_hashref) {
        push @BuySellHashref, \$hash_ref;
    }
    
  2. or download this
    for my $hashref (@BuySellHashref) {
      print $hashref->{personID} . "\n";
    }