phpknuckledragger Posted June 28, 2008 Share Posted June 28, 2008 I need some help parsing about 7 different rss,xml, and rdf files from their sources. I was using this code but it only displays 2 of the seven. I was using: $n = count($feed_title); for($i=0;$i < $n;$i++) { $rss =& new XML_RSS($url[$i++]); $rss->parse(); foreach ($rss->getItems() as $item) { $result[$i][] = $item; } } This works on some but not all of the 7 links. Link to comment https://forums.phpfreaks.com/topic/112321-parsing-an-rdf-file-with-php/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.