Skip to content

Instantly share code, notes, and snippets.

@whyisjake
Created December 13, 2011 20:38
Show Gist options
  • Save whyisjake/1473778 to your computer and use it in GitHub Desktop.
Save whyisjake/1473778 to your computer and use it in GitHub Desktop.
xml_response
<?php
error_reporting('E_All');
$request_url = 'http://news.makerfaire.com/feed/';
$xml = simplexml_load_file($request_url) or die('feed not loading');
print_r($xml);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment