I have got this code:
$url = "http://steamcommunity.com/market/priceoverview/?currency=3&appid=730&market_hash_name=".$name;
$url = file_get_contents($url);
echo $url;
The output of this is
{
"success":true,
"lowest_price":"4,20\u20ac",
"volume":"4,855",
"median_price":"4,16\u20ac"
}
and I want just the lowest_price
. How can i select it?