I just simply keep getting errors.
I simply want to echo the Title, Date and URL of all the listings.
I’ve done more than this, but ive reset to scratch.
[php]<?php
$request_url = “http://api.eventful.com/rest/events/search?app_key=p4t8BFcLDtCzpxdS&location=Houston,Tx&sort_order=popularity&date=future”;
var_dump($xml);
$xml = simplexml_load_file($request_url) or die(“feed not loading”);
$title = $xml->search->events->event_id->title;
echo $title;
?>[/php]
Where do I go from here?! :’(