added a new php file for html output only
[e-DoKo.git] / index.php
index 990bee7eab3166e6e1e86b708f84854aa3201ae1..20ca7faf5e7d609df4bfecc261d002fe4869428c 100644 (file)
--- a/index.php
+++ b/index.php
@@ -42,8 +42,9 @@
 error_reporting(E_ALL);
 
 include_once("config.php");     
-include_once("functions.php");
-include_once("db.php");
+include_once("output.php");      /* html output only */
+include_once("db.php");          /* database only */
+include_once("functions.php");   /* the rest */
 
 DB_open();
 
@@ -280,9 +281,6 @@ else if(isset($_REQUEST["me"]))
        break;
       case 'play':
       case 'gameover': /*both entries here,  so that the tricks are visible for both in case of 'play' there is a break later that skips the last part*/
-       display_news();
-       display_status();
-
        /* display local time */
        echo "<div class=\"time\">\n Local times:<table>";
        $users = array();
@@ -297,6 +295,7 @@ else if(isset($_REQUEST["me"]))
            echo "<tr> <td>$name</td> <td>".date("Y-m-d H:i:s")."</td></tr>\n";
          };
        echo "</table>\n</div>\n";
+       display_status();
 
        /* display links to other games */
        echo "<div class=\"over\">\n";
@@ -309,6 +308,8 @@ else if(isset($_REQUEST["me"]))
        echo "</form>\n";
        echo "</div>\n";
 
+       display_news();
+
        $gamestatus = DB_get_game_status_by_gameid($gameid);
        if($gamestatus == 'pre')
          {
@@ -600,7 +601,7 @@ else if(isset($_REQUEST["me"]))
        echo "<p>these are the games you are playing in:<br />\n";
        $result = mysql_query("SELECT hash,game_id from Hand WHERE user_id='$uid' AND status<>'gameover'" );
        while( $r = mysql_fetch_array($result,MYSQL_NUM))
-         echo "<a href=\"http://doko.nubati.net/database/index.php?me=".$r[0]."\">game #".$r[1]." </a><br />";
+         echo "<a href=\"".$host."?me=".$r[0]."\">game #".$r[1]." </a><br />";
        echo "</p>\n";
 
        $names = DB_get_all_names();
@@ -609,7 +610,7 @@ else if(isset($_REQUEST["me"]))
          echo "$name <br />\n";
        echo "</p>\n";
        echo "<p>Want to start a new game? remember 4 names from the list above and visit ".
-         "<a href=\"http://doko.nubati.net/database/index.php?new\">this page.</a></p>";
+         "<a href=\"".$host."?new\">this page.</a></p>";
       }
     else
       {
@@ -682,28 +683,7 @@ else if(isset($_REQUEST["Rfullname"]) &&
 /* default login page */
 else
   { /* no new game, not in a game */
-?>
-    <p> If you want to play a game of Doppelkopf, you found the right place ;) </p>
-    <p> Please <a href="index.php?register">register</a>, in case you haven't done yet  <br />
-        or login with you email-address or name and password here:
-    </p>
-        <form action="index.php" method="post">
-          <fieldset>
-            <legend>Login</legend>
-             <table>
-              <tr>
-               <td><label for="email">Email:</label></td><td><input type="text" id="email" name="email" size="20" maxlength="30" /> </td>
-              </tr><tr>
-               <td><label for="password">Password:</label></td><td><input type="password" id="password" name="password" size="20" maxlength="30" /></td>
-              </tr><tr>
-               <td> <input type="submit" value="login" /></td>
-             </table>
-          </fieldset>
-        </form>
-
-
-
-<?php
+    home_page();
   }
 ?>
 </body>