Hello, I am a PHP newbie and I have created a script to write some text to a file. It has been giving me this error
Warning: fopen(./category.xml): failed to open stream: Permission denied in c:\inetpub\ on line 16
Cannot open file
Here is the code example
$myfilename = "./category.xml";
if (!($fp=fopen("$myfilename","w"
)) die("Cannot open file"
;
if(!(fwrite($fp,"Hello world"
)) die("Error in writing"
;
fclose($fp);
Any help is appreciated
Warning: fopen(./category.xml): failed to open stream: Permission denied in c:\inetpub\ on line 16
Cannot open file
Here is the code example
$myfilename = "./category.xml";
if (!($fp=fopen("$myfilename","w"


if(!(fwrite($fp,"Hello world"


fclose($fp);
Any help is appreciated