<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Using SimpleXML To Parse RSS Feeds</title>
	<atom:link href="http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/</link>
	<description>Stuart Herbert's PHP Blog - Architecture, Code, and Hosting</description>
	<lastBuildDate>Tue, 09 Mar 2010 11:56:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Julian</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-67408</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Fri, 08 Jan 2010 13:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-67408</guid>
		<description>Very nice!
Thanks.</description>
		<content:encoded><![CDATA[<p>Very nice!<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Feyi</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-63855</link>
		<dc:creator>Feyi</dc:creator>
		<pubDate>Wed, 30 Sep 2009 08:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-63855</guid>
		<description>Thanks Stuart. I found your site from a thread on http://www.neowin.net/forum/index.php?showtopic=761114.
This article is very enlightening. I&#039;m trying to parse a namespace-based XML and it&#039;s proving problematic.
Thanks to this, it now problem solved.
Thanks a lot</description>
		<content:encoded><![CDATA[<p>Thanks Stuart. I found your site from a thread on <a href="http://www.neowin.net/forum/index.php?showtopic=761114" rel="nofollow">http://www.neowin.net/forum/index.php?showtopic=761114</a>.<br />
This article is very enlightening. I&#8217;m trying to parse a namespace-based XML and it&#8217;s proving problematic.<br />
Thanks to this, it now problem solved.<br />
Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicolas</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-63391</link>
		<dc:creator>Nicolas</dc:creator>
		<pubDate>Sat, 12 Sep 2009 10:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-63391</guid>
		<description>Your just...god !
4 hours i&#039;m looking for content:encoded extraction. Thanks !</description>
		<content:encoded><![CDATA[<p>Your just&#8230;god !<br />
4 hours i&#8217;m looking for content:encoded extraction. Thanks !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: swathi</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-61994</link>
		<dc:creator>swathi</dc:creator>
		<pubDate>Sat, 25 Jul 2009 09:29:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-61994</guid>
		<description>thanks a lot for this article.......very understandable</description>
		<content:encoded><![CDATA[<p>thanks a lot for this article&#8230;&#8230;.very understandable</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amy Varga</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-61383</link>
		<dc:creator>Amy Varga</dc:creator>
		<pubDate>Mon, 06 Jul 2009 16:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-61383</guid>
		<description>Very valuable information, thank you so much!</description>
		<content:encoded><![CDATA[<p>Very valuable information, thank you so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gregg</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-60425</link>
		<dc:creator>Gregg</dc:creator>
		<pubDate>Fri, 12 Jun 2009 16:17:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-60425</guid>
		<description>Incredible writeup.  this will come in handy!  thank you.

for error handling be sure to do a try/catch on creating new SimpleXMLElement object

try { $xmlData = @new SimpleXMLElement($rawFeed); } catch (Exception $e) { //error handling in here }</description>
		<content:encoded><![CDATA[<p>Incredible writeup.  this will come in handy!  thank you.</p>
<p>for error handling be sure to do a try/catch on creating new SimpleXMLElement object</p>
<p>try { $xmlData = @new SimpleXMLElement($rawFeed); } catch (Exception $e) { //error handling in here }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Williams</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-59905</link>
		<dc:creator>Richard Williams</dc:creator>
		<pubDate>Sun, 24 May 2009 17:23:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-59905</guid>
		<description>Very good and needed article. RSS can be parsed also using biterscripting. I use biterscripting in addition to java.

Richard</description>
		<content:encoded><![CDATA[<p>Very good and needed article. RSS can be parsed also using biterscripting. I use biterscripting in addition to java.</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-59707</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Tue, 19 May 2009 20:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-59707</guid>
		<description>Nice one!!! Your post helped me a lot!!</description>
		<content:encoded><![CDATA[<p>Nice one!!! Your post helped me a lot!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Work at Home</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-57312</link>
		<dc:creator>Work at Home</dc:creator>
		<pubDate>Thu, 16 Apr 2009 02:52:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-57312</guid>
		<description>I just recently switched (today!) from my hosted windows platform to linux.  I am not versed in php at all, and of course, all of my asp broke when I moved to linux.  My whole site revolves around a feed that I get from another site, I was using an asp script and xsl to publish the feed.  I came upon your site in my search on Google :)

I wanted to comment that this is filed under beginners... and my gosh... I am less than a beginner!  I don&#039;t quite understand all of this, but I am reading the explanations a few times over.  I appreciate how detailed this article is.</description>
		<content:encoded><![CDATA[<p>I just recently switched (today!) from my hosted windows platform to linux.  I am not versed in php at all, and of course, all of my asp broke when I moved to linux.  My whole site revolves around a feed that I get from another site, I was using an asp script and xsl to publish the feed.  I came upon your site in my search on Google <img src='http://blog.stuartherbert.com/php/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I wanted to comment that this is filed under beginners&#8230; and my gosh&#8230; I am less than a beginner!  I don&#8217;t quite understand all of this, but I am reading the explanations a few times over.  I appreciate how detailed this article is.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Whoila Blog &#187; Blog Archive &#187; Some useful information on parsing RSS 2 feeds</title>
		<link>http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/comment-page-1/#comment-44186</link>
		<dc:creator>Whoila Blog &#187; Blog Archive &#187; Some useful information on parsing RSS 2 feeds</dc:creator>
		<pubDate>Sat, 14 Feb 2009 08:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/#comment-44186</guid>
		<description>[...] http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/" rel="nofollow">http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
