Help for this page

Select Code to Download


  1. or download this
    # Current data structure
    $ADDRESS{Last1,First1}{Account} = ""; # Blank
    ...
    $ADDRESS[998][0] = ""; # Blank
    $ADDRESS[998][1] = "First999";
    ...
    
  2. or download this
    my $count = 0;
    foreach my $name (keys %ADDRESS) {
    ...
     $row[$count][6] = $ADDRESS{$name}{Description};
     $count++;
    }