Please see the XML & XSL doc's below. I cannot seem to populate the XML document can anybody help?
===========================================================
XML
===
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="displayproducts.xsl"?>
<books>
<book id="A1000">
<title>Pierre: The Ambiguities</title>
<author>Herman Melville</author>
<price>9.99</price>
</book>
</books>
============================================================
XSL
===
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<head>
<title>Test Products</title>
</head>
<body background="background.jpg">
<p><img border="0" src="test_header.gif" width="600" height="174"/></p>
<p><font size="7">Products List</font></p>
<hr/>
<xsl:apply-templates select="books"/>
</body>
</html>
</xsl:template>
<xsl:template match="books">
<table width="90%" border="1">
<tr>
<td>Title</td>
<td>Author</td>
<td>Price</td>
</tr>
<xsl:for-each select="book">
<xsl:sort select="title"/>
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="author"/></td>
<td><xsl:value-of select="price"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
===========================END============================