Quote:
Originally posted by John
Try adding some code like this to the index.php file at about line 80:
Code:
$countviews=$DB_site->query_first("SELECT SUM(views) AS views FROM thread");
$totalviews=$countviews[views];
if ($totalviews=="") {
$totalviews=0;
}
This is not included as standard, since the SQL call is potentially quite server intensive.
John
|
John - why not adding a total counter into the database as standard?