diff options
author | Arun Persaud <arun@nubati.net> | 2007-07-29 19:12:11 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2007-07-29 19:12:11 -0700 |
commit | 2e9d5e97305ccbd1b975013511922f924d53fffd (patch) | |
tree | a01a8a7a878bc6094d2c56d1a742bbe0b891ddab | |
parent | d8eac0035f97a64371557e7da8b9730fe28d8788 (diff) | |
download | e-DoKo-2e9d5e97305ccbd1b975013511922f924d53fffd.tar.gz e-DoKo-2e9d5e97305ccbd1b975013511922f924d53fffd.tar.bz2 e-DoKo-2e9d5e97305ccbd1b975013511922f924d53fffd.zip |
BUGIFX+LAYOUT: gameids where still in the player menu; show table for new game setup
fixed last commit.
for new games, the table is now shown and one can select the place people are sitting
better.
-rw-r--r-- | css/standard.css | 4 | ||||
-rw-r--r-- | functions.php | 2 | ||||
-rw-r--r-- | index.php | 11 | ||||
-rw-r--r-- | output.php | 11 |
4 files changed, 22 insertions, 6 deletions
diff --git a/css/standard.css b/css/standard.css index 9eb54e7..5bca2ae 100644 --- a/css/standard.css +++ b/css/standard.css @@ -37,7 +37,9 @@ text-align: center; } - +.rules { +margin-top:20em; +} .card { diff --git a/functions.php b/functions.php index d738b00..57945ef 100644 --- a/functions.php +++ b/functions.php @@ -818,7 +818,7 @@ function display_user_menu() while( $r = mysql_fetch_array($result,MYSQL_NUM)) { - echo "<a href=\"".$host."?me=".$r[0]."\">game #".$r[1]." </a><br />\n"; + echo "<a href=\"".$host."?me=".$r[0]."\">game ".DB_format_gameid($r[1])." </a><br />\n"; } echo @@ -33,8 +33,15 @@ if(myisset("logout")) } else if(myisset("new")) { - $names = DB_get_all_names(); - output_form_for_new_game($names); + if( isset($_SESSION["name"]) ) + { + $names = DB_get_all_names(); + output_form_for_new_game($names); + } + else + { + echo "Please log in."; + } } /*check if everything is ready to set up a new game */ else if( myisset("PlayerA", "PlayerB","PlayerC","PlayerD","dullen","schweinchen","call" )) @@ -44,13 +44,19 @@ function output_form_for_new_game($names) <h2> Players </h2> <p>Please select four players (or use the randomly pre-selected names)</p> <form action="index.php" method="post"> + + <div class="table"> + <img src="pics/table.png" alt="table" /> <?php /* ask for player names */ + $i=0; foreach( array("PlayerA","PlayerB","PlayerC","PlayerD") as $player) { srand((float) microtime() * 10000000); $randkey = array_rand($names); $rand = $names[$randkey]; + echo "<span class=\"table".$i."\">"; + $i++; echo " Name: <select name=\"$player\" size=\"1\" /> \n"; foreach($names as $name) { @@ -61,10 +67,11 @@ function output_form_for_new_game($names) else echo " <option>$name</option>\n"; } - echo " </select>\n"; + echo " </select></span>\n"; } ?> - <h2> Rules </h2> + </div> + <h2 class="rules"> Rules </h2> <p> Some areas are grayed out which means that the rule is not implemented yet and therefore cannot be selected </p> <p> ten of hearts: <ul> |