From a0b3efd697ed19fe2bf204868ab5920e4af5d467 Mon Sep 17 00:00:00 2001 From: arun Date: Mon, 9 Apr 2007 09:25:29 +0000 Subject: minor cleanup --- index.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'index.php') 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(); -- cgit v1.2.3-18-g5258