Log in

View Full Version : question~


squawell
12-02-2001, 06:59 AM
if i want to count forum's total posts views~~

what should i do??

FWC
12-02-2001, 07:30 AM
Try:

$forumviews = $DB_site->query_first("SELECT SUM(views) AS threadviews FROM thread WHERE forumid='X'");
$totalviews = number_format($forumviews[threadviews]);

Replace the red X with the forum ID number you are interested in.

squawell
12-02-2001, 08:18 AM
thankz~~~

but if i want to count all forums~~

what should i do??

FWC
12-02-2001, 08:27 AM
Sorry, I misunderstood your question. Use this hack:

https://vborg.vbsupport.ru/showthread.php?s=&threadid=14739&highlight=total+and+views

squawell
12-02-2001, 08:49 AM
i already use that hack but it look so strange!!

ex:thread:107 and thread views also 107~~~

it didn't count post's views if want to count post too what should

i do??

and my english not good enough,i'm sorry about that!!

FWC
12-02-2001, 09:00 AM
You're doing something wrong. The number of threads and views should not be the same unless each thread was only viewed once. You need to add the hack code toward the top of index.php and then have something like this:

Total Threads: <b>$totalthreads</b> | Total Thread Views: <b>$totalviews</b>

in your forumhome template. You will not get the same values for both.

squawell
12-02-2001, 09:15 AM
haha~~~~~:D

ur right~~~!!

i'm really do something wrong with that code!!

thankz again~~~~