Getting weather data from openweathermap fails. Here is my code:
$xml = new
SimpleXMLElement(file_get_contents('http://api.openweathermap.org/data/2.5/weather?q=london&mode=xml'));
$country = $xml->code->country;
$city = $xml->code->city;
echo "Country: $country<br/>City: $city";
When I echo I don't get anything at all. Help is appreciated!