PHP-4.2.2
expat-1.95.4
sablotron-0.95
I've got an XSL file that processes an XML file quite nicely in my IE6. I took these 2 files, remove the XSL call from the XML file and wrote a little PHP file to process both :
$xh = xslt_create();
$strXML = join('',file('content.xml'));
$strXSL = join('',file('content.xsl'));
$result = xslt_process($xh,$strXML,$strXSL);
Now, I've tried this, I've stried switching the XML and XSL order in the xslt_process, (just in case), I've tried the examples from over at www.php.net and I've tried loading files instead of strings. Either way, when I DONT get an error message from sablotron its just doesnt display ANYTHING on the screen. No head, no body, no content, SPECIALLY no XML...
Does anyone know what the problem might be ?
Thanx for reading.