/*
* Application Database Index Page
*
*/
include("path.php");
require(BASE."include/"."incl.php");
apidb_header("Wine Application Database");
?>
Welcome
This is the Wine Application Database. From here you get info on application compatibility with Wine. For developers, you can get information on the APIs used in an application.
Most of the features of the Application database require that you have a user account and are logged in. Some of the benefits of membership are:
So what are you waiting for, [login now]. Your help in stomping out Wine issues will be greatly appreciated.
If you have anything to contribute (screenshots, howtos), contact us at: appdb@winehq.com
$countQuery = "SELECT count(versionId) as hits FROM appVersion WHERE versionName != 'NONAME'"; $result = mysql_query($countQuery); $ob = mysql_fetch_object($result); $numApps = $ob->hits; $voteQuery = "SELECT appVotes.appId, appName, count(userId) as count ". "FROM appVotes, appFamily ". "WHERE appVotes.appId = appFamily.appId ". "GROUP BY appId ORDER BY count DESC LIMIT 1"; $result = mysql_query($voteQuery); $ob = mysql_fetch_object($result); $voteAppId = $ob->appId; $voteAppName = $ob->appName; echo "There are $numApps applications currently in the database with\n"; echo "$voteAppName being the\n"; echo "top voted application.\n"; echo "\n"; apidb_footer(); ?>