sorry for the noobie question here but I've been struggling for a while. I'm developing an app I'm trying to query my database to add points whenever a friend starts using the app. I've been using this FQL command to find friends using the app
SELECT uid FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) AND is_app_user=1
This brings the results in an array of just the UIDs of friends already using the app. Like so (All of these are test users):
Array ( [0] => Array ( [uid] => 100003095627567 ) [1] => Array ( [uid] => 100003256239213 ) [2] => Array ( [uid] => 100003296198341 ) )
The problem I'm running into is that I need all of the UID's in a single variable separated by commas like (UID1, UID2, UID3) so I can query the database on my end. I've already tried the ForEach command but thats not working. Any help or a suggested workaround would be nice :)