- or download this
sub GetReferersBar{
my ($key,$value,%thishash,$bartext);
...
$bartext .= "</TABLE>" ;
return $bartext;
}
- or download this
sub printcells {
my $href = shift;
...
return $bartext;
}
- or download this
foreach my $key (map { $_->[0] }
sort { $b->[1] <=> $a->[1] }
map { [ $_, $thishash->{$_} ] }
keys %$thishash;
- or download this
sub ST_by_reverse_numeric {
local ($a, $b);
$b->[1] <=> $a->[1]
}