Does this 'omit-xml-declaration' work? (my stylesheet looks with this)
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="4.0" encoding="UTF-8"
indent="yes" omit-xml-declaration="yes"/>
....templates..
</xsl:stylesheet>
All my transformation result in a document starting with
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
In a browser this is ok, but when trying to pass the document to Excel
2002 the first line seems to break the readingcapabillity of excel.
How (if) can I lose this first line?
Thanks
Vincent
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php