Hi guy
I've successfully enabled support to xslt
on my machine (win xp + php 4.3.1 + apache 1.3.27) but now I've a problem
with this script:
<?php
$xh = xslt_create();
$result = xslt_process($xh, 'file://myxml.xml', 'file://myxsl.xsl');
if (!$result) {
die(sprintf("Cannot process XSLT document [%d]: %s",xslt_errno($xh),
xslt_error($xh)));
}
print($result);
xslt_free($xh);
?>
I get this error:
Warning: Sablotron error on line none: cannot open file 'myxsl.xsl' in ...
the xml and xsl file are in the same directory from where the script start, so there is no problem about file location.
Thanks
😕