|
If you can't find one it shouldn't be too difficult to do in PHP/MySQL.
All you need is a database with:
Site and Clicks
Set the clickthough page to increment the number of clicks in the database. Then do:
SELECT * FROM database ORDER BY clicks DESC LIMIT 10,0
which will give you your top 10.
|