I have Apache and PHP installed on my comp, and I recently added the domxml extension, however, when I try to use the domxml_open_file() function, I get the following errors:
Warning: domxml_open_file(): warning: in d:\httpserver\xmlreader.php on line 3
Warning: domxml_open_file(): failed to load external entity "test.xml" in d:\httpserver\xmlreader.php on line 3
Here is the code I'm using:
I might have installed the dll incorrectly, but when I use phpinfo(); it shows domxml as having been installed. Any help is greatly appreciated!
Natwod
Warning: domxml_open_file(): warning: in d:\httpserver\xmlreader.php on line 3
Warning: domxml_open_file(): failed to load external entity "test.xml" in d:\httpserver\xmlreader.php on line 3
Here is the code I'm using:
Code:
if (!$dom = domxml_open_file("test.xml")) {
echo "Error while parsing the document<br />";
exit;
}
else {
echo "Document opened for reading.<br />";
}
I might have installed the dll incorrectly, but when I use phpinfo(); it shows domxml as having been installed. Any help is greatly appreciated!
Natwod