diff options
author | arun <arun@nubati.net> | 2006-12-08 11:05:21 +0000 |
---|---|---|
committer | arun <arun> | 2006-12-08 11:05:21 +0000 |
commit | 351e3df476b7cc3d6d3db7ec5833367e449bbdfa (patch) | |
tree | 7eb39c30c2de41b25e1ffeeee7a5d2c39fa4e83b /db.php | |
parent | dceed6f464ca2a65ba25e454aeaea2e1434cd5f3 (diff) | |
download | e-DoKo-351e3df476b7cc3d6d3db7ec5833367e449bbdfa.tar.gz e-DoKo-351e3df476b7cc3d6d3db7ec5833367e449bbdfa.tar.bz2 e-DoKo-351e3df476b7cc3d6d3db7ec5833367e449bbdfa.zip |
basic user page, list available users and link to start a new game
Diffstat (limited to 'db.php')
-rw-r--r-- | db.php | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -7,8 +7,8 @@ function DB_open() { global $DB; - if ( $DB = mysql_connect('localhost','dokodb', 'doko') ) - mysql_select_db('doko') or die('Could not select database'); + if ( $DB = mysql_connect('mysql.nubati.net','doko', '$DoKo#.') ) + mysql_select_db('dokodb') or die('Could not select database'); else die (mysql_error()); @@ -339,4 +339,14 @@ function DB_get_hash_from_game_and_pos($id,$pos) return ""; } +function DB_get_all_names() +{ + $names = array(); + + $result = mysql_query("SELECT fullname FROM User"); + while($r = mysql_fetch_array($result,MYSQL_NUM)) + $names[] = $r[0]; + + return $names; +} ?>
\ No newline at end of file |