I'm sure that my XML and XSL files are well formed.
I'm running:
PHP 4.3.9
EXPAT Version 1.95.6
Sablotron Version 1.0
Apache/2.0.51
WinXP prof
my php code:
$xsltref = xslt_create();
$fileBase = 'file://' . getcwd () . '/';
xslt_set_base ( $xsltref, $fileBase );
$xslt = join( '', file("html.xsl"));
$xml =join('',file("a.xml"));
xslt_process( $xsltref,$xml, $xslt,$result );
print( $result );
xslt_free($xsltref);
Thank you !