Jump to content

[SOLVED] Strange error??


LiamProductions

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.