Quote:
Originally Posted by KaiSan
How do I go about finding this?
I was to find out a members postcount, but we have no post count in the spam section...
I was just wondering if there was a way to find out how to count all those up as well.
Thanks. 
|
If it's really only for your knowledge, you can do it through MySQL...
Code:
SELECT username, COUNT( * ) AS realpostcount
FROM post
GROUP BY username
ORDER BY username DESC;
I'm trying to figure out a way to add this info onto the user, so I can build a dynamic "bar" that indicates how many "useful" posts a user has versus posts in our spammy area.