Created
December 13, 2011 20:38
-
-
Save whyisjake/1473778 to your computer and use it in GitHub Desktop.
xml_response
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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