Jump to content

fopen with w+ string mode error


dnzone

Recommended Posts

I get the error message below when i try to run the follow code. can anybody tell me where did i do wrong. I am running PHP 5.1.2 on IIS 5.5 (Windows XP)

[code]
$filename = "textfile.txt";
$fp = fopen($filename, "w+");
$somecontent =  "Hello World";
fwrite($fp, $somecontent);
fclose($fp);
[/code]

PHP Warning: fopen(textfile.txt) [function.fopen]: failed to open stream: Permission denied in c:\Inetpub\wwwroot\PHProg\testfile.php on line 10 PHP Warning: fwrite(): supplied argument is not a valid stream resource in c:\Inetpub\wwwroot\PHProg\testfile.php on line 12 PHP Warning: fclose(): supplied argument is not a valid stream resource in c:\Inetpub\wwwroot\PHProg\testfile.php on line 13
Link to comment
https://forums.phpfreaks.com/topic/22352-fopen-with-w-string-mode-error/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.