id and appid=$core_app->id");
echo "
$platform->name |
\n";
while ($app_version = mysql_fetch_object($result)) {
$version = sprintf("BOINC core client, version %s.",
$platform->name, $app_version->version_num, $app_version->version_num);
echo " $version |
\n";
//$app_version->md5_cksum";
}
}
require_once("db.inc");
require_once("util.inc");
db_init();
page_head("Download the BOINC Core Client");
printf(
TABLE2."\n"
."
|
\n"
."To select the right core client for your computer, click on the download\n"
."link corresponding to the name of your operating system. |
\n"
."".TD2.LG_FONT."To Download:
\n"
);
$result = mysql_query("select * from app where name='core_client'");
$core_app = mysql_fetch_object($result);
mysql_free_result($result);
$result = mysql_query("select * from platform");
while ($platform = mysql_fetch_object($result)) {
platform_downloads($platform, $core_app);
}
echo "\n";
page_tail();
mysql_free_result($result);
?>