diff options
author | arun <arun@nubati.net> | 2007-02-03 04:33:02 +0000 |
---|---|---|
committer | arun <arun> | 2007-02-03 04:33:02 +0000 |
commit | 0ef11ea847d9891e19605e6c93cb4c7296df0a57 (patch) | |
tree | 4a8d74ec976855ba757a6c9b07a55e181bb2c173 /index.php | |
parent | 63908b2063ccdeb9690b9c685cf1a1eb41ef2e59 (diff) | |
download | e-DoKo-0ef11ea847d9891e19605e6c93cb4c7296df0a57.tar.gz e-DoKo-0ef11ea847d9891e19605e6c93cb4c7296df0a57.tar.bz2 e-DoKo-0ef11ea847d9891e19605e6c93cb4c7296df0a57.zip |
cleaned up the user page a bit
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -824,20 +824,19 @@ else if(myisset("me")) echo "</p>\n"; - echo "<p>and these are your games that are already done:<br />\n"; + echo "<p>and these are your games that are already done:<br />Game: \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=\"".$host."?me=".$r[0]."\">game #".$r[1]." </a><br />"; + echo "<a href=\"".$host."?me=".$r[0]."\">#".$r[1]." </a>, "; echo "</p>\n"; $names = DB_get_all_names(); echo "<p>registered players:<br />\n"; foreach ($names as $name) - echo "$name <br />\n"; + echo "$name, \n"; echo "</p>\n"; - echo "<p>Want to start a new game? remember 4 names from the list above and visit ". - "<a href=\"".$host."?new\">this page.</a></p>"; + echo "<p>Want to start a new game? Visit <a href=\"".$host."?new\">this page.</a></p>"; } else { |