Hi,
I'm trying to get XML to display something in IE6,
I have one XSL source:
*****************************************************
<xsl:stylesheet version="1.0"
xmlns:xsl="[
www.w3.org];
<xsl

utput method="html"/>
<xsl:template match="/letter">
<html>
<head><title>Letter</title></head>
<body><xsl:apply-templates/></body>
</html>
</xsl:template>
<xsl:template match="to">
<b>TO: </b><xsl:apply-templates/><br/>
</xsl:template>
<xsl:template match="from">
<b>FROM: </b><xsl:apply-templates/><br/>
</xsl:template>
<xsl:template match="message">
<b>MESSAGE: </b><xsl:apply-templates/><br/>
</xsl:template>
</xsl:stylesheet>
************************************************************************************
and one XML source that calls the XSL,
************************************************************************************
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="letter2html.xsl" version="1.0"?>
<letter>
<to>Mom</to>
<from>Tom</from>
<message>Happy Mother's Day</message>
</letter>
************************************************************************************
I only see the source XML, not the HTML generated.
Maybe there is something to set in PHP.ini or HTTPD.conf?
Many thanks