Quote:
Originally Posted by Paul M
Unless you know something I don't - then I don't think there is any way to extract that data - vB does not keep such records.
|
This will give you total thread views and replies in a forum:
PHP Code:
$numcount=$db->query_first("
SELECT COUNT(threadid) AS threads, SUM(replycount) AS replies, SUM(views) AS views
FROM " . TABLE_PREFIX . "thread
WHERE forumid=$forumid
");
This is what I use for my Forumdisplay stats cache hack.