I've been trying to get a PHP loop working for the past hour, having trouble getting more then 1 item displayed, here's the output of the array: http://pastie.org/6429971
Here's my code:
$url = 'https://www.eventbrite.com/json/user_list_events?app_key=HIDEN&user=HIDDEN';
$events = json_decode(get_data($url));
$i = 0;
foreach ($events as $event) {
// print_r($event[$i]);
echo $event[$i]->event->title;
$i++;
}