
Untitled
By: a guest on
May 22nd, 2012 | syntax:
None | size: 0.63 KB | hits: 21 | expires: Never
<?php
function curl_post($url, $data)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
return curl_exec($ch);
curl_close($ch);
}
$data = array('key' => '42E4E3F3A6304382A77CAC6288124358', 'query' => 'Skream', 'genre' => '1603', 'class' => 'single');
$xml = simplexml_load_string( curl_post('http://www.juno.co.uk/api/1.2/bundle/getlist', $data) );
foreach($xml->bundles->bundle as $bundle)
{
echo $bundle->title . '<br>';
}
?>