<?php
$q = urlencode($_REQUEST['q']);
$limit = $_REQUEST['limit'];
$selectedStoreFront = $_REQUEST['selectedStoreFront'];
$jsonurl = "http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/wa/wsSearch?term=$q&country=$selectedStoreFront&entity=software&limit=$limit";
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);
?>