Guest_imported
New member
- Jan 1, 1970
- 0
I've got a scores script for a game i've made but it only shows one person for each number of kills.
You can see the result at
foreach my $key ( sort { $b <=> $a } keys %scores ) {
unless ($key == "0"
{
print scorehtm "<TR><TD>$key<TD>$scores{$key}";
}
}
Anyone know why only one for each value is returned?
You can see the result at
foreach my $key ( sort { $b <=> $a } keys %scores ) {
unless ($key == "0"
print scorehtm "<TR><TD>$key<TD>$scores{$key}";
}
}
Anyone know why only one for each value is returned?