Jump to content

Recommended Posts

hey guys!

im working a friend request script

here is the code so far

<?
ob_start();
session_start();
include("config.php");
if(isset($_SESSION['userid'])) {
$sql = mysql_query("SELECT * FROM friends WHERE friendID = '{$_SESSION['userid']}' and accepted = 'no'") or die(mysql_error());
$friendreq = mysql_fetch_array($sql);
echo '<form method="post">';
while ($friendreq = mysql_fetch_array($sql)) {
echo "<input type='checkbox' name='ac[]' value='". $friendreq['fr_reqid'] ."'>  ";
echo "From: ". $friendreq['from'] ." ". $friendreq['fr_reqid'];
}
echo '<br><br><input name="accept" type="submit" value="Accept">
</form>';
if (isset($_POST['accept']) && count($_POST['ac']) > 0) { 
  // Make sure they are only attempting to delete their own messages!!! 
  $sql = "UPDATE  `friends` SET `accepted` =  'yes' WHERE  `friends`.`fr_reqid` = '{$friendreq['fr_reqid']}' LIMIT 1 ;' and userid = '{$_SESSION['userid']}'"; 
  if (!mysql_query($sql)) { 
    // Could not delete selected messages 
  } else { 
    // Successfully deleted messages
    echo "Successfully Deleted Messages";
  } 
} 
} else {
header ("Location:index.php");
}
?>

i wanna try to make it so the selected requests get accepted

or in my terms set accepted to yes

but the problom is that its really complicated

and it doesn't work

does anyone know a simpler way

or a way to fix the code i have?

thanks

Link to comment
https://forums.phpfreaks.com/topic/55491-friend-request-help/
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.