Array
(
[0] => Array
(
[title] => Bump the size of your information store to 75GB (Exchange 2003 Standard Edition only)
[link] => http://techrepublic.com.com/5100-1035_11-6063252.html?
part=rss&tag=feed&subj=tr
[description] => In Service Pack 2, the Exchange developers
have provided you with the ability to size the information store to any size you like between 1 and 75 GB, and they chose 18GB as the
default. Here's how to change the size yourself.
[pubdate] => Fri, 21 Apr 2006 00:00:00 PDT
)
[1] => Array
(
[title] => Learn the pros and cons of Windows Firewall
[link] => http://techrepublic.com.com/5100-1009_11-6063367.html?
part=rss&tag=feed&subj=tr
[description] => Is Windows Firewall up to the task of securing your network? Mike Mullins has
his doubts. In this edition of Security Solutions, he delves into the details of Windows Firewall and weighs its pros and cons.
[pubdate] => Thu, 20 Apr 2006 13:25:00 PDT
)
// set up array of RSS feeds
$feeds = array( "http://techrepublic.com.com/5150-22-0.xml",
"http://news.linux.com/news.rss",
"http://rss.slashdot.org/Slashdot/slashdot");
// retrieve each feed
// get channel information and headlines
foreach ($feeds as $f) {
$rss =& new XML_RSS($f);
$rss->parse();
$info = $rss->getChannelInfo();
$items = $rss->getItems();
// print channel information
?>
<b>The latest from <a href="<?php echo $info['link']; ?>"><?php echo $info['title']; ?></a></b>:
<p />
<ul>