diff options
author | arun <arun@nubati.net> | 2007-02-03 04:57:04 +0000 |
---|---|---|
committer | arun <arun> | 2007-02-03 04:57:04 +0000 |
commit | 15e85c12f9392246845f5c611f5faafe8660a9e2 (patch) | |
tree | cd3d9c99427ce11b60ba2d3ae2acf24a3a85b455 /index.php | |
parent | 0ef11ea847d9891e19605e6c93cb4c7296df0a57 (diff) | |
download | e-DoKo-15e85c12f9392246845f5c611f5faafe8660a9e2.tar.gz e-DoKo-15e85c12f9392246845f5c611f5faafe8660a9e2.tar.bz2 e-DoKo-15e85c12f9392246845f5c611f5faafe8660a9e2.zip |
added session to database
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -63,7 +63,17 @@ else if( myisset("PlayerA", "PlayerB","PlayerC","PlayerD" )) if(myisset("followup") ) { $followup= $_REQUEST["followup"]; - mysql_query("INSERT INTO Game VALUES (NULL, NULL, '$randomNRstring', 'normal', NULL,'1','pre','$followup' ,NULL)"); + $session = DB_get_session_by_gameid($followup); + if($session) + mysql_query("INSERT INTO Game VALUES (NULL, NULL, '$randomNRstring', 'normal', NULL,'1','pre','$session' ,NULL)"); + else + { + /* get max session */ + $max = DB_get_max_session(); + $max++; + mysql_query("INSERT INTO Game VALUES (NULL, NULL, '$randomNRstring', 'normal', NULL,'1','pre','$max' ,NULL)"); + mysql_query("UPDATE Game SET session='".$max."' WHERE id=".DB_quote_smart($followup)); + } } else mysql_query("INSERT INTO Game VALUES (NULL, NULL, '$randomNRstring', 'normal', NULL,'1','pre', NULL ,NULL)"); |