<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output indent="no" method="html"/>
<xsl:template match="/">
<html>
<head>
  <title>Item</title>
</head>
<body bgcolor="#FFFFF">

<h2>Item</h2>

<table border="1">
<xsl:for-each select="/PXSQL/DBI/ARTICLES/ROW">
<tr><th>Id</th><td><xsl:value-of select="id"/></td></tr>
<tr><th>Name</th><td><xsl:value-of select="name"/></td></tr>
<tr><th>Description</th><td><xsl:value-of select="descr"/></td></tr>
<tr><th>Price</th><td><xsl:value-of select="price"/></td></tr>
</xsl:for-each>
</table>

<xsl:for-each select="/PXSQL/DBI/ARTICLES/ROW">
<xsl:element name="a">
<xsl:attribute name="href">/cgi-bin/PXSQL/examples/perl_xsql.pl?template=edit_item&amp;id=<xsl:value-of select="id"/></xsl:attribute>
[ Edit ]
</xsl:element>
</xsl:for-each>

</body>
</html>

</xsl:template>

</xsl:stylesheet>
