Subject:XML to table Author:Ivan Sleeckx Date:06 Feb 2007 10:26 AM
Hi Eate,
your question is rather vague. But generally you just apply an XSL to the XML in which you
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head/>
<body>
<table>
table rows with whatever values of XML elements you want
</table>
</body>
</html>
</template>
</stylesheet>