diff options
author | Arun Persaud <arun@nubati.net> | 2008-10-18 11:33:36 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-10-18 11:54:53 -0700 |
commit | eb20bf1a0cae1192eb50c19220e72df8d971d8e7 (patch) | |
tree | b056fd4e9933c733195ebf40ebbb8d5c957df5b3 /include/db.php | |
parent | 9cbbe2da9cde298ec2fbacc5029388b2a33db9f8 (diff) | |
download | e-DoKo-eb20bf1a0cae1192eb50c19220e72df8d971d8e7.tar.gz e-DoKo-eb20bf1a0cae1192eb50c19220e72df8d971d8e7.tar.bz2 e-DoKo-eb20bf1a0cae1192eb50c19220e72df8d971d8e7.zip |
NEW FEATURE: make it possible to view games where people played with the same hand
had to change a few things and check more often if people are logge in, so that for example
personal notes only show up when you are logged in and not when someone else is looking at your cards
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include/db.php')
-rw-r--r-- | include/db.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/db.php b/include/db.php index 1e18f95..514bde2 100644 --- a/include/db.php +++ b/include/db.php @@ -1102,5 +1102,13 @@ function DB_get_exchanged_cards($hash) return $cards; } - +function DB_played_by_others($gameid) +{ + $gameids = array(); + $result = DB_query("SELECT id FROM Game WHERE randomnumbers=(SELECT randomnumbers from Game where id=$gameid) and status='gameover'"); + while($r = DB_fetch_array($result)) + if($r[0]!=$gameid) + $gameids[]=$r[0]; + return $gameids; +} ?>
\ No newline at end of file |