topical media & game development

talk show tell print

mashup-flickr-11-Complete-visualizing-news-11-2.php / php



  <?php
  
  require_once(dirname(__FILE__) . '/../lib/magpie/rss_fetch.inc');
  
  feed = 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/technology/rss.xml';
  
  rss = fetch_rss(feed);
  items = rss->items;
  ?>
  
  <h1><?php echo rss->channel['title'] ?></h1>
  <p><?php echo rss->channel['description'] ?></p>
  <ul>
  <?php
  foreach (items as item)
  {
  ?>
    <li><strong><?php echo item['title'] ?></strong><br/>
    <?php echo item['description'] ?>
    </li>
  <?php 
  }
  ?>
  
  </ul>
  


(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.