{
mysql_query("INSERT INTO Play VALUES(NULL,NULL,NULL,".DB_quote_smart($trickid).
",".DB_quote_smart($handcardid).",".DB_quote_smart($sequence).")");
- return;
+
+ $playid = mysql_insert_id();
+ return $playid;
}
function DB_get_all_names_by_gameid($id)
else
return 0;
}
+
+function DB_insert_comment($comment,$playid,$userid)
+{
+ mysql_query("INSERT INTO Comment VALUES (NULL,NULL,NULL,$userid,$playid, ".DB_quote_smart($comment).")");
+ return;
+}
?>
\ No newline at end of file
"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");
$seq = $r[3];
$pos = $r[2];
$trick = $r[5];
+ $comment = $r[6];
if($trick!=$lasttrick && $seq==1)
{
$play[$pos]=$r[0];
- $comment=0;
- if($comment)
+ if($comment!="")
echo " <span class=\"comment\">";
else
echo " <span>";
echo $r[1];
/* check for comment */
- if($comment)
+ if($comment!="")
echo "<span>".$comment."</span>";
echo "</span>\n ";
else
$myturn = 0;
- if(isset($_REQUEST["comment"]))
- {
-
- }
/* do we want to play a card? */
if(isset($_REQUEST["card"]) && $myturn)
{
$trickid = $a[0];
$sequence = $a[1];
- DB_play_card($trickid,$handcardid,$sequence);
+ $playid = DB_play_card($trickid,$handcardid,$sequence);
+
+ /*check for coment */
+ if(isset($_REQUEST["comment"]))
+ {
+ DB_insert_comment($_REQUEST["comment"],$playid,$myid);
+ };
+
echo "<div class=\"card\">";
echo " you played <br />";
display_card($card);