LiamProductions Posted September 17, 2007 Share Posted September 17, 2007 Hey. Heres the error: Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in C:\wamp\www\MySystem\members.php on line 11 Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\wamp\www\MySystem\members.php on line 12 There was a critical error. Matching your data. And heres the code: <?php if(isset($_POST['submit'])) { if(isset($_POST['user'])) { if(isset($_POST['pass'])) { include('mysql.php'); $user = mysql_real_escape_string($_POST['user']); $result = mysql_query("SELECT * FROM `system` WHERE `members`.`user` = '$user'"); $user = mysql_fetch_assoc($result); if(mysql_num_rows($result) == 0) { echo "There was a critical error. Matching your data."; } else { $enteredPassword = md5($_POST['pass']); $pass = ($_POST['pass']); if($enteredPassword == $pass) { $userC = $_POST['user']; setcookie("User", $userC, time()+3600); } else { echo "There was a critical error. Matching your data."; } } } else { echo "There was a critical error with you <b>Password</b>."; } } else { echo "There was a critical error with your <b>Username</b>."; } } else { echo "There was a critical error."; } ?> Its a login file. Can you find the error because i can't. Link to comment https://forums.phpfreaks.com/topic/69671-solved-strange-error/ Share on other sites More sharing options...
cooldude832 Posted September 17, 2007 Share Posted September 17, 2007 replace $result = mysql_query("SELECT * FROM `system` WHERE `members`.`user` = '$user'"); with $result = mysql_query("SELECT * FROM `system` WHERE `members`.`user` = '$user'") or die(mysql_error()); and paste the error in here Link to comment https://forums.phpfreaks.com/topic/69671-solved-strange-error/#findComment-350051 Share on other sites More sharing options...
LiamProductions Posted September 17, 2007 Author Share Posted September 17, 2007 Table 'system.system' doesn't exist The database is called system and the table with users in is called members. Link to comment https://forums.phpfreaks.com/topic/69671-solved-strange-error/#findComment-350068 Share on other sites More sharing options...
LiamProductions Posted September 17, 2007 Author Share Posted September 17, 2007 Fixed! Link to comment https://forums.phpfreaks.com/topic/69671-solved-strange-error/#findComment-350071 Share on other sites More sharing options...
cooldude832 Posted September 17, 2007 Share Posted September 17, 2007 This is just a suggestion, but if a moderator could make this a sticky or a derivation saying you add the or die to a query before posting query issues a lot of problems could be sovled Link to comment https://forums.phpfreaks.com/topic/69671-solved-strange-error/#findComment-350161 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.