load($cacheFile); $items = $rss->getItems(); #returns all rss items $numFeeds = 0; echo "
"; foreach($items as $story){ if($story['category']=="Tournament Announcements"){ $numFeeds++; //$text = $story['description']; //$text = strip_tags($text); //$text = preg_replace("(\[font(.+?)...)","", $text); //$text = stripBBCode($text); echo "{$story['title']}
{$story['pubDate']}
"; //echo "{$text}

"; echo "

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