$ch = curl_init();
$timeout = 10;
$useragent = "iTunes/9.02 (Macintosh; U; PPC Mac OS X 10.2";
$header = "X-Apple-Store-Front: 143441-1";
$url = "http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewTopLegacy?id=25204&popId=30&genreId=36"
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array($header));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt ($ch, CURLOPT_USERAGENT, $useragent);
header($header);
$fp = fopen($file,'w+');
curl_setopt($ch, CURLOPT_FILE,$fp);
$http_conn = curl_exec($ch);
$info = curl_getinfo($ch);