Created
November 30, 2011 22:12
-
-
Save whyisjake/1411295 to your computer and use it in GitHub Desktop.
MakerShed Embederattor
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Maker Shed Thingamagoop</title> | |
<meta name="generator" content="BBEdit 10.1" /> | |
<style type="text/css"> | |
</style> | |
</head> | |
<body> | |
<?php | |
error_reporting('E_All'); | |
$request_url = 'http://makershed.com/net/webservice.aspx?api_name=generic\featured_products'; | |
$xml = simplexml_load_file($request_url) or die("feed not loading"); | |
$products = $xml->Product; | |
shuffle($products); | |
foreach ($products as $product) { | |
echo $product->ProductName.'<br />'; | |
} | |
?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment