我正在使用 imdb api 进行 ajax 调用来搜索电影,我注意到带有空格的查询我得到了错误;Undefined variable: id in C:\wamp\www\..
对于一些结果。我怎样才能解决这个问题?
($row = mysql_fetch_assoc($sql));
$id = $row['imdb_id'];
$test = "http://imdbapi.org/?id=tt00".$id."&type=json&plot=simple&episode=1&lang=en-US&aka=simple&release=simple&business=0&tech=0";
$cont = file_get_contents ($test);
$data = json_decode($cont, true);
$title = $data['title'];
echo "$title";