topical media & game development

talk show tell print

server-webapi-code-03-3-1.php / php



  <?php
          // Page 24
  
    request = "http://rss.news.yahoo.com/rss/software";
    response = file_get_contents(request);
    xml = simplexml_load_string(response);
    echo "<h1>{xml->channel->title}</h1>";
    foreach(xml->channel->item AS story)
    {
      echo "<a href=\"story->link\" title=\"\">story->title</a><br>"; 
      echo "<p>story->description</p><br><br>";
    }
  ?>


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.