Editing this code here on Stackoverflow and I'm really near to get the result I need.
So I have this code posted down here:
$friends = $facebook->api('/me/friends');
if(!empty($friends['data'])){
$size = variable_get('facebook_graph_pic_size_nodes','square');
$protocol = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http';
foreach($friends['data'] as $data){
$fbid = $data['id'];
$fbfriendlikes[$fbid]=$facebook->api('/'.$fbid.'/likes');
}
The $fbfriendlikes
outputs me an array like this one : http://penelope-ns.net/fb/fig.jpg
What do I need to do is save the names in a $return
value, all names.
Can someone please help me with this? Thanks.