2003-09-08 00:04:55 +00:00
|
|
|
<?php {
|
2004-04-14 20:55:37 +00:00
|
|
|
require_once("../inc/cache.inc");
|
2004-06-30 18:53:35 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
|
|
|
|
$n = 20;
|
|
|
|
|
2004-04-14 20:55:37 +00:00
|
|
|
$sort_by = $_GET["sort_by"];
|
|
|
|
if (!$sort_by) $sort_by = "expavg_credit";
|
2004-06-07 03:34:07 +00:00
|
|
|
$offset = $_GET["offset"];
|
|
|
|
if (!$offset) $offset=0;
|
|
|
|
|
2004-06-30 18:53:35 +00:00
|
|
|
if ($offset % $n) $offset = 0;
|
|
|
|
|
2004-06-07 03:34:07 +00:00
|
|
|
if ($offset < 1000) {
|
|
|
|
$cache_args = "sort_by=$sort_by&offset=$offset";
|
2004-07-22 23:42:50 +00:00
|
|
|
start_cache(TOP_PAGES_TTL, $cache_args);
|
2004-06-24 16:51:22 +00:00
|
|
|
} else {
|
|
|
|
page_head("Limit exceeded");
|
|
|
|
echo "Sorry - first 1000 only.";
|
|
|
|
page_tail();
|
2004-07-15 18:54:17 +00:00
|
|
|
exit();
|
2004-06-07 03:34:07 +00:00
|
|
|
}
|
2003-09-08 00:04:55 +00:00
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/user.inc");
|
|
|
|
require_once("../inc/team.inc");
|
2002-11-11 19:40:22 +00:00
|
|
|
|
2002-11-08 22:30:13 +00:00
|
|
|
db_init();
|
2002-11-11 19:40:22 +00:00
|
|
|
|
2002-11-08 22:30:13 +00:00
|
|
|
page_head("Top teams");
|
2003-09-08 00:04:55 +00:00
|
|
|
if ($sort_by == "total_credit") {
|
2004-05-31 00:50:06 +00:00
|
|
|
$sort_clause = "total_credit desc";
|
2003-09-08 00:04:55 +00:00
|
|
|
} else {
|
2004-05-31 00:50:06 +00:00
|
|
|
$sort_clause = "expavg_credit desc";
|
2003-09-08 00:04:55 +00:00
|
|
|
}
|
2004-08-11 11:24:49 +00:00
|
|
|
$result = mysql_query("select * from team order by $sort_clause limit $offset,$n");
|
2003-03-17 22:37:49 +00:00
|
|
|
start_table();
|
2003-10-15 08:47:13 +00:00
|
|
|
row1("Teams", 6);
|
2004-05-31 00:50:06 +00:00
|
|
|
team_table_start($sort_by);
|
2004-06-07 03:34:07 +00:00
|
|
|
$i = $offset + 1;
|
2002-11-08 22:30:13 +00:00
|
|
|
while ($team = mysql_fetch_object($result)) {
|
2004-11-01 23:10:02 +00:00
|
|
|
if ($sort_by == "total_credit") {
|
|
|
|
show_team_row($team, $i);
|
|
|
|
$i++;
|
|
|
|
} else {
|
|
|
|
if (!team_inactive_ndays($team, 7)) {
|
|
|
|
show_team_row($team, $i);
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
}
|
2002-11-08 22:30:13 +00:00
|
|
|
}
|
2002-11-11 19:40:22 +00:00
|
|
|
mysql_free_result($result);
|
2002-12-06 21:37:30 +00:00
|
|
|
echo "</table>\n<p>\n";
|
2004-06-07 03:34:07 +00:00
|
|
|
if ($offset > 0) {
|
|
|
|
$new_offset = $offset - $n;
|
|
|
|
echo "<a href=top_teams.php?sort_by=$sort_by&offset=$new_offset>Last $n</a> | ";
|
|
|
|
|
|
|
|
}
|
|
|
|
$new_offset = $offset + $n;
|
|
|
|
echo "<a href=top_teams.php?sort_by=$sort_by&offset=$new_offset>Next $n</a>";
|
|
|
|
|
|
|
|
if ($offset < 1000) {
|
2004-11-18 20:01:12 +00:00
|
|
|
page_tail(true);
|
|
|
|
end_cache(TOP_PAGES_TTL, $cache_args);
|
|
|
|
} else {
|
|
|
|
page_tail();
|
2004-06-07 03:34:07 +00:00
|
|
|
}
|
2004-04-14 20:55:37 +00:00
|
|
|
|
2003-09-08 00:04:55 +00:00
|
|
|
} ?>
|