Hello I have implemented the following
$fql = "SELECT uid2 FROM friend WHERE uid1=" . $uid;
$param = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ''
);
$fqlResult = $facebook->api($param);
Now I need to fetch elements from $fqlResult
. How should I do this?