Support forum login

©2006-2010 IAAI Software

Contact Us

BBC News Headlines (RSS)

This example parses the BBC News RSS feed to display the latest news headlines, showing the headline (linked to the main article) and item description. Click here to view the live output from this script.

<?php
  header
("Content-Type: text/html;charset=utf-8");

  require(
"MagicParser.php");

  function 
myRecordHandler($item)
  {
    print 
"<h2><a href='".$item["LINK"]."'>".$item["TITLE"]."</a></h2>";

    print 
"<p>".$item["DESCRIPTION"]."</p>";
  }

  print 
"<h1>BBC News Headlines</h1>";

  
$url "http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml";

  
MagicParser_parse($url,"myRecordHandler","xml|RSS/CHANNEL/ITEM/");
?>