i got sql:
SELECT author, count(*) as total FROM $ForumTableName GROUP BY 1 ORDER BY 2 DESC LIMIT 10
what it do, is that it select from ONE table, count authors and outputs it in the HTML table. I have problems selecting form ALL tables(these table names are stored in the table called "tables"), counts authors form all of them, and outputs it in the HTML table.
So i need some sort of code for all table count.
Sorry for my bad English.
Vulpes