I get these errors,
Warning: fopen(news.inc) [function.fopen]: failed to create stream: Permission denied in /home/.../.../.../.../write.php on line 11
Warning: fwrite(): supplied argument is not a valid stream resource in /home/.../.../.../.../write.php on line 12
Warning: fclose(): supplied argument is not a valid stream resource in /home/.../.../.../.../write.php on line 13
with this code:
<?php
$file = 'news.inc';
$text = $_POST["addtext"];
if ($text = "") {
$feedback = "String Empty";
} else {
$handle = fopen($file, "r+");
fwrite($file, $text);
fclose($handle);
$feedback = "Success";
}
?>
I've practically copied the code from the manual, the file itself is CHMOD 775 , am I missing something?