From ad64e0259097c91f67ea896134128c6883e42900 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Mon, 7 Apr 2008 22:59:23 -0700 Subject: [PATCH] NEW FEATURE: some more statistics list the number of games a user is in at the moment and another list for the total number of games. Also list people that manage not to lose their foxes. Signed-off-by: Arun Persaud --- stats.php | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/stats.php b/stats.php index ec1d9b7..9ecbd94 100644 --- a/stats.php +++ b/stats.php @@ -162,7 +162,7 @@ else if( isset($_SESSION["name"]) ) " fullname FROM Reminder". " LEFT JOIN User ON User.id=user_id". " GROUP BY user_id". - " ORDER BY c DESC LIMIT 3" ); + " ORDER BY c DESC LIMIT 5" ); while( $r = mysql_fetch_array($result,MYSQL_NUM)) echo $r[1]." (".$r[0].")
\n"; echo "

\n"; @@ -196,6 +196,20 @@ else if( isset($_SESSION["name"]) ) echo $r[1]." (".$r[0].")
\n"; echo "

\n"; + echo "

These players lost their fox least often per game:
\n"; + $result = mysql_query("SELECT COUNT(*) /" . + " (SELECT COUNT(*) FROM Hand". + " WHERE user_id=User.id) as c,". + " fullname". + " FROM Score". + " LEFT JOIN User ON User.id=looser_id". + " WHERE score='fox'". + " GROUP BY looser_id". + " ORDER BY c ASC LIMIT 5" ); + while( $r = mysql_fetch_array($result,MYSQL_NUM)) + echo $r[1]." (".$r[0].")
\n"; + echo "

\n"; + /* which position wins the most tricks */ echo "

Which positions at the table make the most tricks:
\n"; $result = mysql_query("SELECT COUNT(*) AS c,winner FROM Trick". @@ -213,6 +227,31 @@ else if( isset($_SESSION["name"]) ) echo " bottom ".$r[0]."
\n"; echo "

\n"; + /* most games */ + echo "

Most games played on the server:
\n"; + $result = mysql_query("SELECT COUNT(*) as c, " . + " fullname FROM Hand". + " LEFT JOIN User ON User.id=user_id". + " GROUP BY user_id". + " ORDER BY c DESC LIMIT 7" ); + while( $r = mysql_fetch_array($result,MYSQL_NUM)) + echo $r[1]." (".$r[0].")
\n"; + echo "

\n"; + + /* most active games */ + echo "

These players are involved in this many active games:
\n"; + $result = mysql_query("SELECT COUNT(*) as c, " . + " fullname FROM Hand". + " LEFT JOIN User ON User.id=user_id". + " LEFT JOIN Game ON Game.id=game_id". + " WHERE Game.status<>'gameover'". + " GROUP BY user_id". + " ORDER BY c DESC LIMIT 7" ); + while( $r = mysql_fetch_array($result,MYSQL_NUM)) + echo $r[1]." (".$r[0].")
\n"; + echo "

\n"; + + /* does the party win more often if they start -- 2.25.1