XSL stylesheet 2

<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' >
<xsl:template match="table">
<TABLE BORDER='1'>
<xsl:for-each select="item">
<xsl:apply-templates select="."/>
</xsl:for-each>
</TABLE>
</xsl:template>
<xsl:template match="item">
<TR><TD><xsl:value-of select="."/></TD></TR>
</xsl:template>
</xsl:stylesheet>