Month Top Scores
getMonthTopScores();
} catch(StorageSchemaException $e) {
echo "
Error: Database schema is not queryable
";
} catch(StorageConnectionException $e) {
echo "
Error: Database is not available
";
}
?>
| # |
Username |
Points |
$res) {
echo '';
echo '| ' . ($key+1) . ' | ';
echo '' . $res['username'] . ' | ';
echo '' . number_format($res['points'],0) . ' | ';
echo '
';
}
?>
Year Top Scores
getYearTopScores();
} catch(StorageSchemaException $e) {
echo "
Error: Database schema is not queryable
";
} catch(StorageConnectionException $e) {
echo "
Error: Database is not available
";
}
?>
| # |
Username |
Points |
$res) {
echo '';
echo '| ' . ($key+1) . ' | ';
echo '' . $res['username'] . ' | ';
echo '' . number_format($res['points'],0) . ' | ';
echo '
';
}
$storage->close();
?>