specificando l'intero url funziona:
ciao!!Codice PHP:
<?php
$jsonUrl = "http://62.94.208.157/gm/book.php";
$jsonContents = file_get_contents($jsonUrl, 0, NULL, NULL);
$jsonDecode = json_decode($jsonContents);
foreach ($jsonDecode as $title) {
echo $title->title . '
';
}