I am able to view content displayed from the API but i'm not able to extract the various contents.

my codes are below:

function parseInfo($barcode) {
$url = "https://archive.org/advancedsearch.php?q=$barcode+AND+licenseurl:[http://creativecommons.org/a+TO+http://creativecommons.org/z]&fl[]=identifier,title,mediatype,collection&rows=15&output=json&callback=IAE.search_hits";
    $contents = file_get_contents($url); 
   // $json = json_decode($contents, true);
    return $contents;
}

echo $array = parseInfo($barcode);

//var_dump($json);
for ($i = 0; $i <  count($array); $i++) {
    foreach($array as $values){
echo      $id = ($values[$i]['ID']);
    echo  $Title = ($values[$i]['title']);
      $SubTitle = ($values[$i]['SubTitle']);
      $Description = ($values[$i]['Description']);
      $Image = ($values[$i]['Image']);
      $isbn = ($values[$i]['isbn']);
    }
}

Thanks for your help.

I have issues get content from callbacks like:

myCallback({"code":200,"lang":"en-it","text":["Essere, o non essere?","Questo è il problema."]})   

Please help. I want to get the values e.g. lang, text

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.