summaryrefslogtreecommitdiffstats
path: root/db.php
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-02-06 02:03:39 +0000
committerarun <arun>2007-02-06 02:03:39 +0000
commit7ecd66ab61eb1f0e8d32e75570b4809b57ae79d5 (patch)
tree4f12c7484a0c18e7b7e0408a8dfd9894d64a4e40 /db.php
parentfb8907b3f2daf368222f514d5ff36a059e330a0d (diff)
downloade-DoKo-7ecd66ab61eb1f0e8d32e75570b4809b57ae79d5.tar.gz
e-DoKo-7ecd66ab61eb1f0e8d32e75570b4809b57ae79d5.tar.bz2
e-DoKo-7ecd66ab61eb1f0e8d32e75570b4809b57ae79d5.zip
feature request: show complete hand for completed games
Diffstat (limited to 'db.php')
-rw-r--r--db.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/db.php b/db.php
index 38b788c..8feb186 100644
--- a/db.php
+++ b/db.php
@@ -303,6 +303,19 @@ function DB_get_hand($me)
return $cards;
}
+function DB_get_all_hand($me)
+{
+ $cards = array();
+
+ $handid = DB_get_handid_by_hash($me);
+
+ $result = mysql_query("SELECT card_id FROM Hand_Card WHERE hand_id=".DB_quote_smart($handid));
+ while($r = mysql_fetch_array($result,MYSQL_NUM))
+ $cards[]=$r[0];
+
+ return $cards;
+}
+
function DB_get_cards_by_trick($id)
{
$cards = array();