Add a statistics page that displays the number of users, active users, comments and applications.

This commit is contained in:
Chris Morgan
2004-12-01 22:26:50 +00:00
committed by Jeremy Newman
parent 3b09de0902
commit 8ccc06ba4b
4 changed files with 50 additions and 5 deletions

View File

@@ -42,11 +42,7 @@ apidb_header("Wine Application Database");
</p>
<?
$countQuery = "SELECT count(versionId) as hits FROM appVersion WHERE versionName != 'NONAME'";
$result = mysql_query($countQuery);
$ob = mysql_fetch_object($result);
$numApps = $ob->hits;
$numApps = getNumberOfVersions();
$voteQuery = "SELECT appVotes.appId, appName, count(userId) as count ".
"FROM appVotes, appFamily ".