home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
- <xsl:template match="/">
- <p>Here is the employee list</p>
- <table border="0">
- <tr>
- <td>Name</td>
- <td>Position</td>
- <td>Email</td>
- </tr>
- <xsl:apply-templates select="company"/>
- </table>
- </xsl:template>
-
- <xsl:template match="company">
- <xsl:for-each select="employee">
- <tr>
- <td><xsl:value-of select="name"/></td>
- <td><xsl:value-of select="position"/></td>
- <td><xsl:value-of select="email"/></td>
- </tr>
- </xsl:for-each>
- </xsl:template>
- </xsl:stylesheet>