First of all, sorry for my bad english.
I have this:
[php]$link = file_get_contents(“http://www.imdbapi.com/?i=tt1285016”);
$json = json_decode($json,true);
echo $json[“Title”];[/php]
and I want to replace tt1285016 with $info[“id”]; (this is something from mysql, first time when i use :((.
If I put echo $info[“id”]; it return exactly what i need: tt1421545.
How can I do that? thank u very much and sorry again for bad enlighs, not native language.