summaryrefslogtreecommitdiffstats
path: root/include/db.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/db.php')
-rw-r--r--include/db.php10
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