specificando l'intero url funziona:
Codice PHP:
<?php

$jsonUrl 
"http://62.94.208.157/gm/book.php";
$jsonContents file_get_contents($jsonUrl0NULLNULL);
$jsonDecode json_decode($jsonContents);
foreach (
$jsonDecode as $title) {
    echo 
$title->title '
'
;
}
ciao!!