diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-01-26 03:30:45 -0600 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-01-26 03:30:45 -0600 |
commit | d7b0c04459a6ec42a37255c38d67cea14fb60e61 (patch) | |
tree | 4269be8ec67fa3f4d12932041d3b37fa1f007daf /pages/tutorial.php | |
parent | 1e65273d68ffdec07f49c14e929499af21f7776a (diff) | |
download | pathery-d7b0c04459a6ec42a37255c38d67cea14fb60e61.tar.xz |
Moved usersData table to users table, added a few more columns to users (currently unused)
Diffstat (limited to 'pages/tutorial.php')
-rw-r--r-- | pages/tutorial.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/tutorial.php b/pages/tutorial.php index 5208a57..88095da 100644 --- a/pages/tutorial.php +++ b/pages/tutorial.php @@ -18,10 +18,10 @@ if ($accepted) { $sql = "
SELECT
- userData.wallColor,
- userData.wallEmblem
- FROM `userData`
- WHERE userID = '$userID' ";
+ users.wallColor,
+ users.wallEmblem
+ FROM `users`
+ WHERE ID = '$userID' ";
$result = mysql_query($sql);
if ($result)
list($wallColor, $wallEmblem) = mysql_fetch_row($result);
|