PHP Classes

File: test.xslt

Recommend this page to a friend!
  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: 19 years ago
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>