minor cleanup
authorarun <arun@nubati.net>
Mon, 9 Apr 2007 09:25:29 +0000 (09:25 +0000)
committerarun <arun>
Mon, 9 Apr 2007 09:25:29 +0000 (09:25 +0000)
index.php
output.php

index ff1948fface259345c62c52f2f5610a54dc39794..7addf0ef375a7f371238ffda434f372b3c2fbef9 100644 (file)
--- a/index.php
+++ b/index.php
@@ -623,7 +623,6 @@ else if(myisset("me"))
       /* display links to the users status page */
       $result = mysql_query("SELECT email,password from User WHERE id='$myid'" );
       $r      = mysql_fetch_array($result,MYSQL_NUM);
       /* display links to the users status page */
       $result = mysql_query("SELECT email,password from User WHERE id='$myid'" );
       $r      = mysql_fetch_array($result,MYSQL_NUM);
-      //output_link_to_user_page($r[0],$r[1]);
       
       display_links($r[0],$r[1]);
       
       
       display_links($r[0],$r[1]);
       
@@ -1142,7 +1141,14 @@ else if(myisset("me"))
 /* default login page */
  else
    { 
 /* default login page */
  else
    { 
-     output_home_page();
+     $pre=0;$game=0;$done=0;
+     $r=mysql_query("SELECT COUNT(id) FROM Game GROUP BY status");
+     if($r) {
+       $pre = mysql_fetch_array($r,MYSQL_NUM);     
+       $game = mysql_fetch_array($r,MYSQL_NUM);     
+       $done = mysql_fetch_array($r,MYSQL_NUM);     
+     }
+     output_home_page($pre[0],$game[0],$done[0]);
    }
 
 output_footer();
    }
 
 output_footer();
index 3bf901d0c39a583cba6ffa28c3fd79dde7ee5bf4..3ff04427f0e2c865a51a96805bb27675aa330c20 100644 (file)
@@ -238,11 +238,13 @@ function check_want_to_play($me)
   return;
 }
 
   return;
 }
 
-function output_home_page()
+function output_home_page($pre,$game,$done)
 {
 ?>
     <p> If you want to play a game of Doppelkopf, you found the right place ;) </p>
 {
 ?>
     <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 />
+    <p> At the moment there are <?php echo "$pre";?> games that are being started and <?php echo"$game"; ?> games that are ongoing. 
+    <?php echo"$done";?> games have been completed on this server. </p>
+    <p> Please <a href="index.php?register">register</a>, in case you haven't done that yet  <br />
         or login with you email-address or name and password here:
     </p>
         <form action="index.php" method="post">
         or login with you email-address or name and password here:
     </p>
         <form action="index.php" method="post">
@@ -321,7 +323,7 @@ function output_footer()
 
   echo "<div class=\"footer\">\n";
   echo "<p class=\"left\"> copyright 2006-2007 Arun Persaud</p>\n";
 
   echo "<div class=\"footer\">\n";
   echo "<p class=\"left\"> copyright 2006-2007 Arun Persaud</p>\n";
-  echo "<p class=\"right\"> Revision: $REV; </p> \n";
+  echo "<p class=\"right\"> Revision: $REV; <a href=\"http://svn.nubati.net/emaildoko/trunk/\">http://svn.nubati.net/emaildoko/trunk/</a></p> \n";
   echo "\n";
   echo "</div>\n";
 
   echo "\n";
   echo "</div>\n";