Akiba
[img]http://i.imgur.com/o3RYT4v.png[/img]
- 4,262
- Posts
- 14
- Years
- Age 25
- in a gap
- Seen Apr 10, 2017
I thought that it'd be interesting to have a statistic on each user's profile that indicates what forum or fora the user visits or posts in the most.
It would be a good way for people to know one's interests and activities. It would probably also be helpful for selecting moderators :)
Just a thought.
The SQL query for the top three fora would look something like this:
I'm not sure how vBulletin works its databases, but that should be more or less it.
It would be a good way for people to know one's interests and activities. It would probably also be helpful for selecting moderators :)
Just a thought.
The SQL query for the top three fora would look something like this:
Spoiler:
SELECT forum, COUNT(forum) AS frequency
WHERE user = insert user here
FROM post
GROUP BY forum
ORDER BY frequency DESC
LIMIT 3;
WHERE user = insert user here
FROM post
GROUP BY forum
ORDER BY frequency DESC
LIMIT 3;
I'm not sure how vBulletin works its databases, but that should be more or less it.