jmcastagnetto           Fri Mar 16 22:10:59 2001 EDT

  Modified files:              
    /phpdoc/en/functions        xslt.xml 
  Log:
  More fixes to the xslt_process() example
  
  
Index: phpdoc/en/functions/xslt.xml
diff -u phpdoc/en/functions/xslt.xml:1.13 phpdoc/en/functions/xslt.xml:1.14
--- phpdoc/en/functions/xslt.xml:1.13   Fri Mar 16 22:07:06 2001
+++ phpdoc/en/functions/xslt.xml        Fri Mar 16 22:10:59 2001
@@ -337,39 +337,39 @@
 
 $xslData = '<xsl:stylesheet
   version="1.0"
-  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
-<xsl:template match="article">
-    <table border="1" cellpadding="2" cellspacing="1">
-        <tr>
-            <td width="20%">
+<xsl:template match="article">
+    <table border="1" cellpadding="2" cellspacing="1">
+        <tr>
+            <td width="20%">
              &amp#160;
-            </td>
-            <td width="80%">
-                <h2><xsl:value-of select="title"/></h2>
-                <h3><xsl:value-of select="author"/></h3>
-                <br/>
+            </td>
+            <td width="80%">
+                <h2><xsl:value-of select="title"/></h2>
+                <h3><xsl:value-of select="author"/></h3>
+                <br/>
                 
-                <xsl:value-of select="body"/>
-            </td>
-        </tr>
-    </table>
-</xsl:template>
+                <xsl:copy-of select="p"/>
+            </td>
+        </tr>
+    </table>
+</xsl:template>
 
-</xsl:stylesheet>';
+</xsl:stylesheet>';
 
-$xmlData = '<?xml version="1.0"?>
-<article>
-    <title>Learning German</title>
-    <author>Sterling Hughes</author>
-    <body>
+$xmlData = '<?xml version="1.0"?>
+<article>
+    <title>Learning German</title>
+    <author>Sterling Hughes</author>
+    <p>
         Essential phrases:
-        <br/>
-        Können Sie mir sagen, wo die Toilette ist?<br/>
-        Ein grosses Bier, bitte!<br/>
-        Noch eins, bitte.<br/>
-    </body>
-</article>';
+        <br/>
+        Können Sie mir sagen, wo die Toilette ist?<br/>
+        Ein grosses Bier, bitte!<br/>
+        Noch eins, bitte.<br/>
+    </p>
+</article>';
 
 if (xslt_process($xslData, $xmlData, $result)) {
     echo "Here is the brilliant in-depth article on learning";


Reply via email to