From 89a2acbccdd9d15f6238662c8b2cebcf475c38aa Mon Sep 17 00:00:00 2001 From: arun Date: Thu, 4 Jan 2007 18:23:47 +0000 Subject: bugfix: names and table show up all the time now; --- index.php | 72 +++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 42 insertions(+), 30 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 29b3eb1..550144f 100644 --- a/index.php +++ b/index.php @@ -234,8 +234,11 @@ else if(myisset("me")) $ok=0; if($ok) - DB_set_game_status_by_gameid($gameid,'play'); - + { + /* TODO: check what kind of game we are playing */ + DB_set_game_status_by_gameid($gameid,'play'); + } + break; case 'play': case 'gameover': @@ -280,19 +283,35 @@ else if(myisset("me")) * only play a card after everyone is ready to play */ } + /* display the table and the names */ + $result = mysql_query("SELECT User.fullname as name,". + " Hand.position as position ". + "FROM Hand ". + "LEFT JOIN User ON User.id=Hand.user_id ". + "WHERE Hand.game_id='".$gameid."' ". + "ORDER BY position ASC"); + + echo "
\n". + " \"table\"\n"; + while($r = mysql_fetch_array($result,MYSQL_NUM)) + { + $name = $r[0]; + $pos = $r[1]; + + echo " $name\n"; + } + echo "
\n"; + /* get everything relevant to display the tricks */ $result = mysql_query("SELECT Hand_Card.card_id as card,". - " User.fullname as name,". " Hand.position as position,". " Play.sequence as sequence, ". - " Hand.hash as hash, ". " Trick.id, ". " Comment.comment ". "FROM Trick ". "LEFT JOIN Play ON Trick.id=Play.trick_id ". "LEFT JOIN Hand_Card ON Play.hand_card_id=Hand_Card.id ". "LEFT JOIN Hand ON Hand_Card.hand_id=Hand.id ". - "LEFT JOIN User ON User.id=Hand.user_id ". "LEFT JOIN Comment ON Play.id=Comment.play_id ". "WHERE Trick.game_id='".$gameid."' ". "ORDER BY Trick.id,sequence ASC"); @@ -306,49 +325,42 @@ else if(myisset("me")) $seq = 1; $pos = 0; - echo "\n