Hi all,
i have a problem in opening a xml file using fopen.
I get an error called
++++++++++++++++++
Warning: fopen(abc.xml): failed to open stream: Permission denied in c:\inetpub\wwwroot\myphp\fopentest.php on line 6
++++++++++++++++++
My xml file name is abc.xml
& the contents in th sml file is
+++++++++++++++++++++
<?xml version="1.0" encoding="ISO-8859-1"?>
<books>
<book>
<author>AA</author>
<title>Sayings of the Century</title>
<price>8.95</price>
</book>
</books>
+++++++++++++++++++
My php file is
++++++++++++++++++++
$filename = "abc.xml";
$handle = fopen ($filename, "r");
$contents = fread ($handle, filesize ($filename));
echo $contents;
fclose ($handle);
++++++++++++++++
all the files are inthe same location..
Infact i'm able to opne a text or php file using the same php code?
Also i had uncommented the line
"extension=php_domxml.dll" in php.ini also & restarted the webserver.
I'm using IIS
can u tell me what is the problem??
Thanks
Thumuluru