Hai all

am using new version on PHP,Apache

now i want to work with XSLT so i removed ; for php_sxlt.dll in php.ini file

i use a code

<?php
$xh = xslt_create();
$result= xslt_process($xh, "solarsystem.xml", "solarsystem.xsl");
if ($result) {
print $result;
}
else {
print "Sorry, $_GET[filename]could not be transformed by short.xsl into";
print " $_GET[filename] the reason is that " . xslt_error($xh) . " and the ";
print "error code is " . xslt_errno($xh);
}
xslt_free($xh);
?>

when i run the program its telling that dll is not found but in specified folder
C:\php\extensions
dll is available

what will be the problem pls guide me
thanks you

Change

php_sxlt.dll

to

extensions/php_sxlt.dll
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.