<?php
ini_set('max_execution_time', 60); // Lets extend maximum execution time from 30 to 60 sec
$q = urlencode($_REQUEST['q']);
$itunesid = $_REQUEST['itunesid'];
$itunestitle = $_REQUEST['itunestitle'];
$jsonurl = "http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/wa/wsLookup?id=$itunesid";
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);
?>