//get all id\'s of ur friend that has installed your application $friend_pics=$facebook->api( array( \'method\' => \'fql.query\', \'query\' => \"SELECT uid FRO
Why don't you convert that array into a string of long list of your values unless array is huge size.
$ids = array(2, 4, 6, 8); $params = implode(",", array_fill(0, count($ids), "?")); $result="SELECT * FROM fb_user WHERE user_id IN($params) ORDER BY oldscore DESC LIMIT 0,10"; db_execute($result);