load('http://www.armedglobalwarfare.com/index.php?type=rss;action=.xml;limit=30'); $items = $rss->getItems(); #returns all rss items $numFeeds = 0; echo "
"; foreach($items as $story){ if($story['category']=="Tournament Announcements"){ $numFeeds++; echo "{$story['title']}
{$story['pubDate']}
{$story['description']}

"; } } if(!$numFeeds){ echo "No new updates for this news feed."; } echo "
"; // echo "
";
  //print_r($items);
   // echo "
"; ?>