Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8016273
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T20:29:37+00:00 2026-06-04T20:29:37+00:00

How to store a Facebook user’s friends list in MySQL using PHP? I am

  • 0

How to store a Facebook user’s friends list in MySQL using PHP?

I am able to get and print the user’s friends list using the PHP code below?

//get friends list
$friends_list = file_get_contents('https://graph.facebook.com/me/friends?access_token=' . $atoken );

$friends_list_array  = json_decode($friends_list,true); 

//convert so that store in mysql 
$my_friends = implode("," , $friends_list_array['data']);
    echo "</br> my friends" . $my_friends;

//result my friendsArray,Array,Array,Array,Array,Array,Array,Array.....

How can I store a friends list in MySQL?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T20:29:38+00:00Added an answer on June 4, 2026 at 8:29 pm

    the friends connection will return the friend’s name and id encapsulated in a data array. So you need to go one step down the array and collect the ids before implode:

    $friends_list = file_get_contents('https://graph.facebook.com/me/friends?access_token=' . $atoken );
    $friends_list_array  = json_decode($friends_list,true);
    $arr= $friends_list_array['data'];
    $friend_ids_arr = array();
    foreach($arr as $friend) {
        $friend_ids_arr[] = $friend['id'];
    }
    $friend_ids = implode("," , $friend_ids_arr);
    echo $friend_ids; // output: id1,id2,id3...etc
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

copy('https://graph.facebook.com/$fbid/picture?type=large', 'images/$fbid.jpg'); i am using the above code to store the image locally ..
I'm using Google Appengine to store a list of favorites, linking a Facebook UserID
I am trying to store facebook user's data array in mysql. I have used
I store various user details in my MySQL database. Originally it was set up
I used Facebook login to identify users. When a new user comes, I store
I'm Writing a facebook application using the Java-facebook-api and MySQL 5.1. I'm trying to
i´m developing a Facebook Fanpage using PHP-SDK 3.0 and integrated a Facebook Registration Plugin.
I would like to retrieve Facebook friends list and use it in my application,
When a user registers for my site through Facebook. It returns 3 friends have
I'm building an application that supposed to store some images from user's Facebook accounts

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.