Add a statistics page that displays the number of users, active users, comments and applications.
This commit is contained in:
committed by
Jeremy Newman
parent
3b09de0902
commit
8ccc06ba4b
@@ -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 ".
|
||||
|
||||
Reference in New Issue
Block a user