Jump to content

Warning: mysql_result():


ctcp

Recommended Posts

<?php 				$liked = ("SELETCT SUM(user_id) as totaluser_id FROM liked WHERE `user_id`='26762'");
			$liked_results = mysql_query($liked);
			$sum_liked = mysql_result($liked, 0); // <--- Error 
			echo $sum_liked;

?>

 

i got this error

Warning: mysql_result(): supplied argument is not a valid MySQL result resource in

 

can sombady help?

Link to comment
Share on other sites

$liked_results = mysql_query($liked) or trigger_error(mysql_error());

 

Do NOT use mysqli_error(), as you cannot mix mysql and mysqli.

 

Notice: 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 'SELETCT SUM(user_id) as totaluser_id FROM liked WHERE user_id = 26762' at line 1 in

Link to comment
Share on other sites

<?php 
			$liked = ("SELECT SUM(user_id) as totaluser_id FROM liked WHERE `user_id`='26762'");
			$liked_results = mysql_query($liked);
			$sum_liked = mysql_result($liked, 0); // <-- line 15 
			echo $sum_liked;
			$liked_results = mysql_query($liked) or trigger_error(mysql_error());
?>

mate i got this error now 
Warning: mysql_result(): supplied argument is not a valid MySQL result resource in mpla mpla on line 15

what is wrong now ?



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.