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...
print_r($events);That will give you the structure of the array you need to work with. – cpilko Jan 18 at 18:11