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.

This is what I have so far:

$multiQuery = '{
"event_info":"
    SELECT name,description,start_time,end_time,pic_small,pic_big, eid,venue,location 
    FROM event WHERE eid IN (SELECT eid FROM event_member WHERE uid = XXXXXXXXX) 
    ", 

"event_venue":"
    SELECT name,username,page_id,location 
    FROM page WHERE page_id IN (SELECT venue.id FROM #event_info)"
}';

$param = array(       
 'method' => 'fql.multiquery',       
 'queries' => $multiQuery,       
 'callback' => '');

try{       
    $events = $facebook->api($param);
}catch(Exception $e){echo $e->getMessage();}

This returns the data all right when I run print_r($events). What I need to know is the foreach loop to run and how to echo out each piece of information. Any help here is greatly appreciated...

share|improve this question
Start with a print_r($events); That will give you the structure of the array you need to work with. – cpilko Jan 18 at 18:11
The array looks great in print_r($events). But that's not the question. – Glenn Geiger Jan 18 at 18:23
2  
I know. See whathaveyoutried.com – cpilko Jan 18 at 18:28
Because the data is nested in the array, I can't figure out the syntax for the foreach loop, or what my echo sytax would look like. I can't find an answer to this anywhere. – Glenn Geiger Jan 18 at 18:31
Because you're new and it's Friday: webcheatsheet.com/PHP/multidimensional_arrays.php. I also know there is a code sample to do exactly what you are looking for here on fb.SO. – cpilko Jan 18 at 18:35
show 2 more comments

closed as too localized by cpilko, Sean Owen, Stony, John Koerner, bmargulies Jan 18 at 22:26

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.