Jump to content

Can not add friend when I click on another profile


rdkd1970

Recommended Posts

I am trying to click on another members profile and view theirs with the add as friend or remove as friend links but it keeps coming back to my own profile. I believe it is because of the $_SESSION[sESS_ID] I have in the $sqlArray. What am I suppose to use to get the other members profile when I click on it.

$friendLink = "";
$the_bless_form = "";
$iFriend_array = "";
if (isset($_SESSION['SESS_ID']) && $_SESSION['SESS_ID'] != $id) { // If SESSION id :-\ is set, AND it does not equal the profile owner's ID

// SQL Query the friend array for the logged in viewer of this profile if not the owner
$sqlArray = mysql_query("SELECT friend_array FROM myMembers WHERE id='" . $_SESSION['SESS_ID'] ."' LIMIT 1"); 
while($row=mysql_fetch_array($sqlArray)) { $iFriend_array = $row["friend_array"]; }
 $iFriend_array = explode(",", $iFriend_array);
if (in_array($id, $iFriend_array)) { 
    $friendLink = '<a href="#" onclick="return false" onmousedown="javascript:toggleInteractContainers(\'remove_friend\');">Remove Friend</a>';
} else {
    $friendLink = '<a href="#" onclick="return false" onmousedown="javascript:toggleInteractContainers(\'add_friend\');">Add as Friend</a>';	
}

Link to comment
Share on other sites

I  have in my friend_array DB is set up for text this is what is in the $sql when I click on the other member profile to try to add them as friend. Should I have it as something else. I also have in DB the friends_request for mem1 and mem2 a,b. but i do not have the default set for this. No matter how I put it in the codes it comes back to my profile so I am wondering if this is set up wrong in the DB.

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.