summaryrefslogtreecommitdiffstats
path: root/output.php
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-05-17 12:29:55 +0000
committerarun <arun>2007-05-17 12:29:55 +0000
commitd4a85c497c76daa0c5d6481ffe2239590bf0c401 (patch)
tree36034354e0cc22ec737cf33d081655cf2d129a35 /output.php
parent16206eb9748e85413976815017a1562d12fa08ed (diff)
downloade-DoKo-d4a85c497c76daa0c5d6481ffe2239590bf0c401.tar.gz
e-DoKo-d4a85c497c76daa0c5d6481ffe2239590bf0c401.tar.bz2
e-DoKo-d4a85c497c76daa0c5d6481ffe2239590bf0c401.zip
wedding should work now, started working on calling 120/90/60/30/0, small bugfixes
Diffstat (limited to 'output.php')
-rw-r--r--output.php27
1 files changed, 25 insertions, 2 deletions
diff --git a/output.php b/output.php
index edd23fb..ec827c7 100644
--- a/output.php
+++ b/output.php
@@ -267,8 +267,31 @@ function output_home_page($pre,$game,$done)
{
?>
<p> If you want to play a game of Doppelkopf, you found the right place ;) </p>
- <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>
+<?php
+ if($pre == 0)
+ echo "<p> At the moment there are no games that are being started ";
+ else if($pre==1)
+ echo "<p> At the moment there is one games that is being started ";
+ else
+ echo "<p> At the moment there are $pre games that are being started ";
+
+ echo "and";
+
+ if($game==0)
+ echo " zero games that are ongoing. ";
+ else if($game==1)
+ echo " one game that is ongoing. ";
+ else
+ echo "$game games that are ongoing. ";
+
+ if($done==0)
+ echo "No game has been completed on this server. </p>";
+ else if($done==1)
+ echo "One game has been completed on this server. </p>";
+ else
+ 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>