FQL: Facebook application php
Posted
by user341879
on Stack Overflow
See other posts from Stack Overflow
or by user341879
Published on 2010-05-15T18:29:54Z
Indexed on
2010/05/15
18:34 UTC
Read the original article
Hit count: 502
php
|facebook-fql
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??
© Stack Overflow or respective owner