summaryrefslogtreecommitdiffstats
path: root/db.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2007-07-29 18:54:14 -0700
committerArun Persaud <arun@nubati.net>2007-07-29 18:54:14 -0700
commitd8eac0035f97a64371557e7da8b9730fe28d8788 (patch)
treeadf0aa43c797aa410879c4e975c8c694da554728 /db.php
parentd7c42361bda4c64a0594a8640156a504fc334f11 (diff)
downloade-DoKo-d8eac0035f97a64371557e7da8b9730fe28d8788.tar.gz
e-DoKo-d8eac0035f97a64371557e7da8b9730fe28d8788.tar.bz2
e-DoKo-d8eac0035f97a64371557e7da8b9730fe28d8788.zip
LAYOUT: address game by session.gamenr
don't use gameid, but use session.gamenumber instead. needs this for tournaments later. new games will get a session number now by default.
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 41e4479..867be16 100644
--- a/db.php
+++ b/db.php
@@ -902,4 +902,17 @@ function DB_get_partner_hash_by_hash($hash)
return NULL;
}
+function DB_format_gameid($gameid)
+{
+ $session = DB_get_session_by_gameid($gameid);
+
+ /* get number of game */
+ $result = mysql_query("SELECT COUNT(*),create_date FROM Game WHERE session='$session' ".
+ " GROUP by session".
+ " HAVING TIMEDIFF(create_date, (SELECT create_date FROM Game WHERE id='$gameid'))<=0");
+ $r = mysql_fetch_array($result,MYSQL_NUM);
+
+ return $session.".".$r[0];
+}
+
?> \ No newline at end of file