<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title><![CDATA[Content with Style - Comments on XSL: the other way of styling up content]]></title>
    <link>http://www.contentwithstyle.co.uk/feeds/rss/comments/4</link>
    <description><![CDATA[]]></description>
    <pubDate>Sun, 14 Mar 2010 01:36:16 +0000</pubDate>
    <generator>Zend_Feed</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
      <title><![CDATA[Content with Style - Comment #1 on XSL: the other way of styling up content]]></title>
      <link>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-78</link>
      <guid>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-78</guid>
      <description><![CDATA[Really useful tutorial. Cheers :)]]></description>
      <content:encoded><![CDATA[Really useful tutorial. Cheers :)]]></content:encoded>
      <pubDate>Wed, 25 May 2005 19:28:07 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[Content with Style - Comment #2 on XSL: the other way of styling up content]]></title>
      <link>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-82</link>
      <guid>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-82</guid>
      <description><![CDATA[Very welcome.]]></description>
      <content:encoded><![CDATA[Very welcome.]]></content:encoded>
      <pubDate>Thu, 26 May 2005 02:08:44 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[Content with Style - Comment #3 on XSL: the other way of styling up content]]></title>
      <link>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-381</link>
      <guid>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-381</guid>
      <description><![CDATA[Very concise and informative.  Discusses the XML/XSL transformation in a nutshell.]]></description>
      <content:encoded><![CDATA[Very concise and informative.  Discusses the XML/XSL transformation in a nutshell.]]></content:encoded>
      <pubDate>Mon, 23 Jan 2006 21:58:42 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[Content with Style - Comment #4 on XSL: the other way of styling up content]]></title>
      <link>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-407</link>
      <guid>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-407</guid>
      <description><![CDATA[Thanks :)]]></description>
      <content:encoded><![CDATA[Thanks :)]]></content:encoded>
      <pubDate>Mon, 30 Jan 2006 09:41:35 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[Content with Style - Comment #5 on XSL: the other way of styling up content]]></title>
      <link>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-5598</link>
      <guid>http://www.contentwithstyle.co.uk/content/xsl-the-other-way-of-styling-up-content/#comment-5598</guid>
      <description><![CDATA[<p>
Just to remind everyone that this article was written when PHP4 was still on. With PHP5 things are different:</p>

<pre><code>
$xmlDoc = new DOMDocument();
$xmlDoc->load('file.xml');

$xslDoc = new DOMDocument();
$xslDoc->load('stylesheet.xsl');

$proc = new XSLTProcessor();
$proc->importStylesheet($xslDoc);
echo $proc->transformToXML($xmlDoc);
</code></pre>]]></description>
      <content:encoded><![CDATA[<p>
Just to remind everyone that this article was written when PHP4 was still on. With PHP5 things are different:</p>

<pre><code>
$xmlDoc = new DOMDocument();
$xmlDoc->load('file.xml');

$xslDoc = new DOMDocument();
$xslDoc->load('stylesheet.xsl');

$proc = new XSLTProcessor();
$proc->importStylesheet($xslDoc);
echo $proc->transformToXML($xmlDoc);
</code></pre>]]></content:encoded>
      <pubDate>Sat, 28 Feb 2009 21:36:58 +0000</pubDate>
    </item>
  </channel>
</rss>
