Skip to content

Instantly share code, notes, and snippets.

@whyisjake
Created November 30, 2011 22:12
Show Gist options
  • Save whyisjake/1411295 to your computer and use it in GitHub Desktop.
Save whyisjake/1411295 to your computer and use it in GitHub Desktop.
MakerShed Embederattor
<!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