Log in

View Full Version : Variables...


Boofo
06-19-2002, 10:35 PM
Can anyone please tell me what the variables are for pulling out the Total Thread views and the total allowed private messages? :)

Admin
06-20-2002, 04:56 AM
Umm... where? :)

Boofo
06-20-2002, 05:12 AM
They are like what you have after I log in. They are under the forum statistics and private messages section. :)

Admin
06-20-2002, 05:32 AM
You can use $pmquota for maximum number of PM's... not sure what you mean about views??

Boofo
06-20-2002, 05:40 AM
Thank you, sir, for that part of it. This line was taken from your screen after I logged in under Forums Statistics.

Total Threads: 12,022 | Total Posts: 97,326 | Total Thread Views: 2,775,052


Originally posted by FireFly
You can use $pmquota for maximum number of PM's... not sure what you mean about views??

Admin
06-20-2002, 05:47 AM
in index.php replace this:
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
$totalthreads=number_format($countthreads['threads']);
With this:
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads, SUM(views) AS views FROM thread');
$totalthreads=number_format($countthreads['threads']);
$totalviews=number_format($countthreads['views']);
And use $totalviews.

Boofo
06-20-2002, 06:17 AM
Thank you, Chen. That worked great! :)