Блин а у меня не работает
xml.php
$xml = domxml_open_file('d:\home\artsteklo\htdocs\index.xml');
$xsl = domxml_open_file('d:\home\artsteklo\htdocs\index.xsl');
if (!$xsl = domxml_xslt_stylesheet_doc($xsl)) echo 'ne povezlo';
$result = $xsl->process($xml);
echo $result;
----------index.xsl------------
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl

utput encoding="windows-1251"/>
<xsl

utput method="html" indent="yes"/>
<xsl

utput method="html" doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" doctype-system="http://www.w3.org/TR/html4/loose.dtd"/>
<xsl:include href="main.xsl" />
<xsl:template match="page">
<xsl:apply-templates />
</xsl:template>
</xsl:stylesheet>
----------main.xsl------------
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<xsl:apply-templates select="page"/>
</html>
</xsl:template>
</xsl:stylesheet>