boinc/html/user/stats.php

28 lines
552 B
PHP
Raw Normal View History

<?php
require_once('../inc/util.inc');
require_once('../inc/stats_sites.inc');
page_head('Project statistics');
echo "
<p>
Statistics from this project
(and other BOINC-based projects) are available
at several web sites:
";
shuffle($stats_sites);
site_list($stats_sites);
echo "
You can get your current statistics in the form
of a 'signature image':
";
shuffle($sig_sites);
site_list($sig_sites);
echo "
You can get your individual statistics
across all BOINC projects from several sites;
see your <a href=home.php>home page</a>.
";
page_tail();
?>