Hello, I applied 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 get the elements from $fqlResult . How can I do it?
source share