Jump to content

I am not seing what is wrong with this


Attila

Recommended Posts

Can someone see why I am getting this error.  Warning: mysql_result(): supplied argument is not a valid MySQL on line 56

 

//check for member
$name = $_POST['Uname'];
$pass = $_POST['Password'];
database_connected();

$sql = "(SELECT COUNT(*) FROM Character WHERE user = '$name' AND password = '$pass')";
$loginresult = mysql_query($sql);
$count = mysql_result($loginresult, 0);   //This is line 56.  I have tried it this way as well $count = mysql_result($loginresult, 0, 0); with no help
echo "$count";
$number_of_results = mysql_num_rows($loginresult);	
if ($count > 0)
{
// Register session key with the value 
$_SESSION['name'] = $name;
$_SESSION['pass'] = $pass;
ob_end_clean();
header ("Location:../membersloggedin.php");
}

 

Thanks

Link to comment
Share on other sites

Good call on adding the or DIE now I am getting this error.

 

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Character WHERE user = 'Test' AND password = 'test')' at line 1 

 

 

Line 1 is <?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.