topical media & game development

talk show tell print

professional-search-07-seophp-feed.php / php



  <?php 
  
  // load the URL factory library
  require_once 'include/rss_factory.inc.php';
  
  // create feed
  rss_feed = new RSSFactory('SEOEgghead.com New Products Feed',
                             'http://www.seoegghead.com/seo-with-php-updates.html', 
                             'Exciting new products, updated daily'); 
  
  // add feed item
  rss_feed->addItem('New Link Juice with Orange Flavor!', 
    'http://seophp.example.com/Products/SEO-Toolbox-C6/Link-Juice-P31.html', 
    'The new Link Juice product of SEOEgghead.com can do wonders for your website!'); 
  
  // add feed item
  rss_feed->addItem('Enhance Your PHP Applications with AJAX!', 
    'http://seophp.example.com/Products/Friends-Shed-C2/AJAX-PHP-Book-P42.html', 
    'Check out this AJAX tutorial for PHP developers!');   
  
  // display feed
  echo rss_feed->get('2.0'); 
  
  ?>
  
  


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