I am trying to get the count of the no of mutual friends I have with all my friends.
foreach($friends_list as $friend)
{
$id = $friend['id'];
$name = $friend['name'];
$arr = $facebook->api('/me/mutualfriends/'.$id);
$arr = $arr['data'];
$count = count($arr);
$totalcount = $totalcount + $count;
$i++;
echo $id. " " .$name . " " . $count . "</br>";
}
But I am getting timed out like after getting data of around 20 frnds. How should I go about optimizing it?