topical media & game development

talk show tell print

basic-ajax-10-FeedRead3.php / php



  <?php
  feed = simplexml_load_file('http://feeds.feedburner.com/ajaxian');
  
  foreach(feed->channel as channel) {
          echo '<h3>' . htmlentities(channel->title) . '</h3>';
          echo '<p><a href="' . htmlentities(channel->link) . '">' . htmlentities(channel->link) . '</a></p>';
          echo '<ul>';
                  foreach (channel->item as item) {
                          echo '<li><a href="' . htmlentities(item->link) . '">';
                          echo htmlentities(item->title) . '</a><br />';
                          echo htmlentities(item->pubDate) .'<br /></li>';
                  }
                  echo '</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.