Results 1 to 2 of 2

Thread: PHP with XML? Google Weather

  1. #1
    Join Date
    Aug 2005
    Posts
    174
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default PHP with XML? Google Weather

    Hello, I want to use Google Weather API
    HTML Code:
    http://www.google.com/ig/api?weather=England
    to somehow load information about the weather onto my website.
    Has anybody here done this before? So far, I have this code:

    PHP Code:
    <?php
    $xml 
    simplexml_load_file("news/api.xml");echo $xml->getName() . "<br />";foreach($xml->children() as $child)
      {
      echo 
    $child->getName() . ": " $child "<br />";
      }
    ?>
    Thanks

  2. #2
    Join Date
    Aug 2005
    Posts
    174
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    does anybody know how to parse xml using php?!?!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •