Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to display the number of friends a user has using my app. I've figured out through FQL how to pull out an array of the users friends using the app.

SELECT uid,name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) AND is_app_user=1

Right now, it pulls up an array when displayed. I'm trying to just display the result as a single numerical value. I'm coding in PHP. Anyone know where I need to go from here?

share|improve this question
Assuming you actually don't need the names, just the count, using SELECT '' will lower the bandwidth usage. – kba Dec 10 '11 at 1:44

2 Answers

Select count(*) perhaps.

SELECT count(*) FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) AND is_app_user=1
share|improve this answer
1  
Not with FQL -- it's different from SQL. See this SO post – rdlowrey Dec 10 '11 at 1:14
@rdlowrey Ah, oh well. Just took a guess. – savinger Dec 10 '11 at 1:15
1  
Be careful ... while I don't do it, there are some SO trolls who love nothing more than to downvote speculative answers that otherwise seem logical :) – rdlowrey Dec 10 '11 at 1:17

print count($array); should return the amount of entries in the array

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.