Log in

View Full Version : posts in specyfic forum


Cust0ms
11-10-2008, 10:41 PM
hello
how to check how much posts user have written in one specyfic forum?

thanks.

Lynne
11-11-2008, 03:37 AM
If you just want to check on a users posts every once in a while in the admin cp, then check out this mod -Users posts (https://vborg.vbsupport.ru/showthread.php?t=133636)

Dismounted
11-11-2008, 03:38 AM
You can use a MySQL query, something like this:
SELECT COUNT(postid) AS numposts
FROM posts
WHERE forumid = X
AND postuserid = X
This query might be pretty costly though.