Login   Register  
PHP Classes
elePHPant
Icontem

File: test.xslt

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Axel Strembel  >  DOM Class  >  test.xslt  >  Download  
File: test.xslt
Role: Auxiliary data
Content type: text/plain
Description: XSLT Transformation
Class: DOM Class
Transform XML classes using XSLT and DOM XML
Author: By
Last change:
Date: 2005-06-10 10:57
Size: 651 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
    <h2>Testeo</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
      	<th>Posicion</th>
        <th>Buque</th>
        <th>Bandera</th>
      </tr>
      <xsl:for-each select="/ROOT/row">
      <tr>
      	<td><xsl:value-of select="position()"/></td>
        <td><xsl:value-of select="@nombre"/></td>
        <td><xsl:value-of select="@bandera"/></td>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>