An Internal Error has Occured. Please report following error to the webmaster.
Resource id #8
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 'Resource id #8' at line 1
function online_status_privacy() {
//check privacy to see if hiding online status
$privacy = "SELECT 1 FROM friend_acc_setting WHERE user_id='$temp[auto_id]' AND FIND_IN_SET('3', privacy) >= 1 LIMIT 1";
$result_privacy = executequery($privacy);
$row = getSingleResult($result_privacy);
//not hiding so continue
if ($row > 0) {
return $_SESSION['hideonline'] = 1;
}else{
return $_SESSION['hideonline'] = 0;
}
}
do you see anything wrong?