in reply to Ranking numbers .....

The way I would do it would be to use sort to assign to an array for each site. Then take the number of hits from each site, and join it with the name of the site into another array, with the number first. That way you can sort the array and it will be the number of hits each site had in order. You can then recall it by using a scalar value for the Array. If that's not good enough you can use REGEX to match the name from the array with all the stats in the site's own array. Hope this makes sense,
$i = 0; open(DATA,"text.txt"); foreach $line (<DATA>) { @site1 = split " ", $line; $master[$i] = "$site1[0], $site1[1]"; } sort @master; print "1. $master[0]"; print "2. $master[1]"; print "3. $master[2]"; print "4. $master[3]"; print "5. $master[4]";

I know this doesn't quite work because of the name of the array for each site, but you should be able to figure that out for yourself.

- p u n k k i d
"Reality is merely an illusion, albeit a very persistent one."
-Albert Einstein