I do a price parser and other information from the site. Here is a link to all this info: https://loot.farm/fullprice.json
Here is my code:
<?php set_time_limit(300); $urljson = file_get_contents("http://loot.farm/fullprice.json"); $data = json_decode($urljson)->price; echo $data; ?> Tell me, what's the problem? I already did a parser for another site, everything was clearer there. Seen once an array, 2 array, etc.