diff options
author | Arun Persaud <arun@nubati.net> | 2007-07-29 18:54:14 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2007-07-29 18:54:14 -0700 |
commit | d8eac0035f97a64371557e7da8b9730fe28d8788 (patch) | |
tree | adf0aa43c797aa410879c4e975c8c694da554728 /db.php | |
parent | d7c42361bda4c64a0594a8640156a504fc334f11 (diff) | |
download | e-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.php | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 |