Please disregard my request. I looked at your code and did it myself with the code below.
I added the following beneath your code in index.php
PHP Code:
// Game Category Count
$result_allgamecategories = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "gamescat $searchclause ORDER BY categoryID DESC
");
$gamecatcount = $DB_site->num_rows($result_allgamecategories);
and then used $gamecatcount by changing
PHP Code:
, Games: $gamecount
in the FORUMHOME template
to
PHP Code:
, $gamecount Games in $gamecatcount Categories
Thanks for the initial code, I'm new to PHP.