Hello Friends
I am new to php i had writen a code for writing a file
i am getting an error
Warning: fopen(jai.txt): failed to open stream: Permission denied in e:\inetpub\wwwroot\write.php on line 3
Couldn't create new file
is there any problem of rights
how to change it ....
code is..........
<?php
$fp = fopen("jai.txt", "w") or die("Couldn't create new file");
$numBytes = fwrite($fp, "Hello, this is some text!");
fclose($fp);
echo "Wrote $numBytes bytes to newfile.file!";
?>