From: arun Date: Mon, 9 Apr 2007 09:25:29 +0000 (+0000) Subject: minor cleanup X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=commitdiff_plain;h=a0b3efd697ed19fe2bf204868ab5920e4af5d467;hp=df684cccba11a7efdee637b58de9c1ecd25bdc10 minor cleanup --- diff --git a/index.php b/index.php index ff1948f..7addf0e 100644 --- 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); - //output_link_to_user_page($r[0],$r[1]); display_links($r[0],$r[1]); @@ -1142,7 +1141,14 @@ else if(myisset("me")) /* 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(); diff --git a/output.php b/output.php index 3bf901d..3ff0442 100644 --- a/output.php +++ b/output.php @@ -238,11 +238,13 @@ function check_want_to_play($me) return; } -function output_home_page() +function output_home_page($pre,$game,$done) { ?>

If you want to play a game of Doppelkopf, you found the right place ;)

-

Please register, in case you haven't done yet
+

At the moment there are games that are being started and games that are ongoing. + games have been completed on this server.

+

Please register, in case you haven't done that yet
or login with you email-address or name and password here:

@@ -321,7 +323,7 @@ function output_footer() echo "
\n"; echo "

copyright 2006-2007 Arun Persaud

\n"; - echo "

Revision: $REV;

\n"; + echo "

Revision: $REV; http://svn.nubati.net/emaildoko/trunk/

\n"; echo "\n"; echo "
\n";