Skip to content

Instantly share code, notes, and snippets.

@freddiefujiwara
Created August 14, 2010 05:51
Show Gist options
  • Save freddiefujiwara/524040 to your computer and use it in GitHub Desktop.
Save freddiefujiwara/524040 to your computer and use it in GitHub Desktop.
<?php
$url = "http://pipes.yahoo.com/pipes/pipe.run?_id=ff2c266883f54d12c567b7876fd4f33c&_render=php&category=celebrity%2Fmusician";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
$result = unserialize(curl_exec($ch));
print_r($result);
curl_close($ch);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment