Current Weather in 3 lines of PHP

<?php 
  $xml = simplexml_load_file('http://www.google.com/ig/api?weather=ADDRESS');
  $information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition");
  echo $information[0]->attributes();
?> 

2 years ago | Permalink