我是新來的XML,我得到了RSS從website.com/rss.php料中的XML如何將XML(rss.php)轉換爲html?
<rss version="0.91">
<channel>
<title>News</title>
<description>Powered by website.com</description>
<link>http://www.website.com/</link>
<language>en-gb</language>
<item>
<title>
Product Title 1
</title>
<link>
http://www.website.com/link-to-product-page.html
</link>
<pubDate>Fri, 27 Sep 2013 17:40:29 +0100</pubDate>
<description>
<![CDATA[
<img src="http://www.website.com/images/product_image_1.jpg"/> Product Description 1 ]]>
</description>
</item>
<item>
<title>
(...)
</description>
</item>
</channel>
</rss>
我想將其轉換爲HTML。有什麼建議? :)
[問題作爲代碼之王必須證明對所解決問題的最小理解。包括嘗試的解決方案,爲什麼他們不工作,以及預期的結果。](http://stackoverflow.com/help/on-topic)。 – IMSoP