Paul, would the query below be the same for a forum on 4.1.10? Thanks.
Quote:
Originally Posted by Paul M
You could certianly run some queries on the table in phpmyadmin.
Code:
select userid, username, count(threadid) as threads_read
from whoread inner join user using (userid)
group by userid order by threads_read desc
Will show you who is reading the most overall.
|