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.

foreach is a looping construct that executes a given piece of code for each element in a list/collection/array. In contrast to a for loop, the foreach loop doesn't require the coder to maintain a counter variable to avoid off-by-one (fencepost) bugs.

learn more… | top users | synonyms (3)

0
votes
0answers
70 views

Getting Values from Facebook Registration JSON Object

I'm having issues using the Facebook Registration for a contest form I'm building, the form submits and gives me the following JSON array when using print_r: Array ( [algorithm] => HMAC-SHA256 ...
0
votes
1answer
51 views

Invalid argument in foreach

I am using the following to retrieve comments from FB: $url = urlencode("http://*****.com/pages/view?id=2153&item=Mens-Collection-Shoes"); $request_url ...
-1
votes
1answer
77 views

Invalid argument in foreach - FB graph API [duplicate]

Possible Duplicate: Invalid argument in foreach I'm simply trying to parse FB graphi API results. When I try the foearch loop I get Invalid Argument error Here's the code $url = ...
0
votes
1answer
56 views

Facebook add comment data format

I want to add comment on facebook post.. via facebook API The function that adds the comment is public function fill($json) { if(isset($json['data'])) { $json = $json['data']; ...
0
votes
3answers
2k views

Insert Variable Array Data Into MYSQL

I am trying to take data from an array using Facebook Open Graph. I am getting the array using a foreach statement, but that is making 6 different INSERT statements. I would like each value from the ...
0
votes
1answer
297 views

PHP Facebook FQL Multquery and dealing with foreach and variables

Alright, so I am trying to figure this out. Basically I have everything working well except for adding the cover photos to each of the DIVS. Basically I have 2 queries using FQL, and here is my code. ...
-2
votes
2answers
678 views

php array, loop to get the exact value

I have this code right here, where the $friends variable is an array with an output like this: { "id": "1149862205", "name": "name", "first_name": "first_name", "last_name": "last_name", ...
0
votes
1answer
491 views

Randomize/Shuffle array, then foreach, then limit to 10 results (Facebook API + PHP)

What I have here is a PHP page working with the Facebook API. What I'm trying to do is (after permissions are set by the user), to get the user's friends' user IDs via: ...
0
votes
1answer
88 views

require_once() breaking array of urls that should generate OpenGraph tags?

Having trouble with this code, wondering if I'm trying to achieve something impossible. I'm using the OpenGraph PHP library I want to fetch an array of urls, send them each through OpenGraph.php and ...
1
vote
2answers
519 views

facebook FQL query performance within foreach loop?

I'm trying to request some information from facebook's FQL, but the request is a little slow. $friend = "SELECT uid2 FROM friend WHERE uid1 = me() LIMIT 30"; $friendSQL = ...
1
vote
1answer
885 views

facebook friendlist pagnation with foreach?

I'm retrieving facebook friendlist, but it retrieves like a billion photos (exaggerated). I was wondering how can I add pagination within a foreach loop? Also, would my PHP coding be the best way to ...
0
votes
2answers
1k views

how to use in foreach for array_keys

i need to get data from array_keys the script i use in the server side: PHP: $friends = json_decode(file_get_contents( 'https://graph.facebook.com/me/friends?access_token=' . ...