Jump to content

[SOLVED] 2 simple sql errors


ram4nd

Recommended Posts

Can anybody tel me that why am i getting these errors:

 

Errors:

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /opt/lampp/htdocs/PTC/login.php on line 9

Warning: mysql_num_rows() expects parameter 1 to be resource, null given in /opt/lampp/htdocs/PTC/login.php on line 10

 

Code:

mysql_connect('localhost','something','else');
mysql_select_db('PTC');

$a = 'SELECT id FROM members WHERE user = '.clean($_POST['user']).' AND pass = '.md5($_POST['pass']);
$b = mysql_query($a);
$query = mysql_fetch_array($b);
if(mysql_num_rows($query) == 1) {
        $_SESSION['user'] = $query['id'];
        setcookie('user', $query['id'], (60 * 60 * 24 * 30 + $_SERVER['REQUEST_TIME']));

        header('Location: members.php');
}
else $x = 'Incorrect username or password.';

Link to comment
https://forums.phpfreaks.com/topic/176020-solved-2-simple-sql-errors/
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.