Help for this page

Select Code to Download


  1. or download this
    foreach $rec ( sort { $a <=> $b } @DB ) {
        chomp $rec;
        ($num,$name,$email,$xnumber) = split /\#/, $rec;
        # print and do whatever else you want...
    }
    
  2. or download this
    foreach my $key (sort keys %dbhash) {
       # print the data found in $dbhash{$key}
    }