From d7b0c04459a6ec42a37255c38d67cea14fb60e61 Mon Sep 17 00:00:00 2001 From: BlueRaja Date: Sat, 26 Jan 2013 03:30:45 -0600 Subject: Moved usersData table to users table, added a few more columns to users (currently unused) --- index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 562b59b..7561071 100644 --- a/index.php +++ b/index.php @@ -30,10 +30,10 @@ if ($accepted) { include_once ('./includes/sqlEmbedded.php'); $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); -- cgit v1.2.3