I am not sure why the code below generates an error "Fatal error: Call to undefined function xslt_create() in .."
<?php
// create a new XSLT processor
$xslt = xslt_create();
// free the xslt processor.
xslt_free($xslt);
?>
I am using PHP 5.04 with Apache 2.0.5 on a Windows 2000 PC. I have enabled the following extention - extension=php_xsl.dll
Is there anything I am missing.
Regards
Maru