- or download this
if (($item[0] ne "") && ($item[1] ne "")){
$items{"$item[0]"} = "$item[1]";
...
}
undef %items;
}
- or download this
while(<DB>) {
chomp;
...
print "$scottnum\t $key \t $items{$scottnum}{$key}\n";
}
}
- or download this
my %info;
...
}
}
close DB;