i'm trying to make an application, getting all the birthdays and other information from you facebook friends, using the facebook php sdk.
i get the friendlist and with a foreach loop, get all the info for every friends' id.
This all works, only it takes 4 min+ to get all the information. (for every friend i have to make a new call)
I can't expect users of my application to wait that long.
Is there a way to get the info faster.
this is my code:
//$arrFriends is a list with all id's and names of friends
foreach ($arrFriends as $f => $value)
{
echo('');
$fql = "select uid, email, name, hometown_location, sex, birthday, education, relationship_status, pic_square from user where uid=" . $value[id];
$param = array('method' => 'fql.query','query' => $fql,'callback' => '');
$friend = $facebook->api($param);
//dan opslaan in de database:
print_r($friend);
echo('');
}