diff options
author | Arun Persaud <arun@nubati.net> | 2009-04-30 00:08:10 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2009-05-11 22:13:13 -0700 |
commit | 0edb4b26c049e07af0970e081fab699d2bdd333b (patch) | |
tree | 5d1c5b993e352e64b7473d1d88a36ba31f66f94b /include/db.php | |
parent | 0a4212f2c7179913c6ae87011b8f00d435af93e3 (diff) | |
download | e-DoKo-0edb4b26c049e07af0970e081fab699d2bdd333b.tar.gz e-DoKo-0edb4b26c049e07af0970e081fab699d2bdd333b.tar.bz2 e-DoKo-0edb4b26c049e07af0970e081fab699d2bdd333b.zip |
NEW FEATURE: show number of tricks a person made
only shows 0,1,few or many tricks, so that we don't give too much information away. Might adjust or change this in the future.
This addresses issues #11.
Diffstat (limited to 'include/db.php')
-rw-r--r-- | include/db.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/db.php b/include/db.php index 3d9d98c..b8b184d 100644 --- a/include/db.php +++ b/include/db.php @@ -1149,4 +1149,10 @@ function DB_played_by_others($gameid) $gameids[]=$r[0]; return $gameids; } + +function DB_get_number_of_tricks($gameid,$position) +{ + $r = DB_query_array("SELECT COUNT(winner) FROM Trick Where game_id='$gameid' and winner='$position'"); + return $r[0]; +} ?>
\ No newline at end of file |