mysql_num_rows(): supplied argument is not a valid MySQL result resource
ช่วยหน่อยคับ mysql_num_rows(): supplied argument is not a valid MySQL result resource
โค้ด
Code (PHP)
<?php
include("config.php");
$mysql_connect = mysql_connect($config["mysql"]["host"],$config["mysql"]["username"],$config["mysql"]["password"]);
$mysql_select_db = mysql_select_db($config["mysql"]["database"]);
mysql_query("SET NAMES UTF8");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
function curl_get_file_contents($URL){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$contents = curl_exec($ch);
curl_close($ch);
if($contents){
return $contents;
}else{
return false;
}
}
function access_token_check($token){
$url .= "https://graph.facebook.com/me?";
$url .= "access_token=".$token;
$response = curl_get_file_contents($url);
$decoded_response = json_decode($response,true);
if(isset($decoded_response["error"])){
return false;
}else{
return $decoded_response;
}
}
function facebook_lastfeed($token){
$url .= "https://graph.facebook.com";
$url .= '/me/feed?limit=1&access_token='.$token;
$response = curl_get_file_contents($url);
$result = json_decode($response,true);
return $result["data"][0]["message"];
}
$me = access_token_check($_GET["accesstoken"]);
if($me!=false){
$query = mysql_query("SELECT * FROM `user` WHERE `fbid` LIKE '".$me["id"]."';");
if(mysql_num_rows($query)){ //<<<<<< error ตรงนี้
mysql_query("UPDATE `user` SET `name` = '".$me["name"]."', `lastlogin` = '".time()."', `lastip` = '".$_SERVER['REMOTE_ADDR']."', `accesstoken` = '".$_GET["accesstoken"]."' WHERE `fbid` = '".$me["id"]."' LIMIT 1;");
}else{
mysql_query("INSERT INTO `user` (`id`, `fbid`, `name`, `lastlogin`, `lastip`, `accesstoken`) VALUES (NULL, '".$me["id"]."', '".$me["name"]."', '".time()."', '".$_SERVER['REMOTE_ADDR']."', '".$_GET["accesstoken"]."');");
}
$lastpost = facebook_lastfeed($_GET["accesstoken"]);
}else{
?>
<meta http-equiv="refresh" content="0;url=index.php">
<script>
alert("Error : : โทเคนผิดพลาด อาจเกิดจากการ ใส่โทเคนผิด หรือ โทเคนหมดอายุแล้ว");
</script>
<?php
die();
}
?>
Tag : PHP, MySQL, CakePHP
Date :
2014-07-10 22:56:14
By :
rosemanry1
View :
835
Reply :
6
โทษทีคับลืมบอก Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in ........ on line 50
Date :
2014-07-10 23:00:55
By :
rosemanry1
49.$query = mysql_query($qr="SELECT * FROM `user` WHERE `fbid` LIKE '".$me["id"]."';") or die( $qr."<br>".mysql_error());
มันไม่มีข้อมูลจากบันทัดนี้ครับ
แก้ตามที่เห็นเลยครับ
Date :
2014-07-10 23:07:28
By :
Chaidhanan
มันขึ้นแบบนี้คับ
SELECT * FROM `user` WHERE `fbid` LIKE '100002487207324';
No database selected
Date :
2014-07-10 23:13:54
By :
rosemanry1
No database selected
Date :
2014-07-10 23:19:26
By :
rosemanry1
โอเคได้แล้วคับ ผมเข้าไปแก้ไฟล์ config มา ขอบคุนคับสำหรับคำแนะนำ
Date :
2014-07-10 23:24:20
By :
rosemanry1
ช่วยแก้โค้ดบรรทัดที่34-35 ให้หน่อยได้มั้ยค่ะ พอเรากดสมัครสมาชิกมันขึ้นว่า Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\mp_shops\save_rigister.php on line 34
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\mp_shops\save_rigister.php on line 35
ช่วยแก้ให้หน่อยนะค่ะ
Date :
2014-11-25 16:42:43
By :
nn
Load balance : Server 01