我创建了一个 html 表单并尝试使用 PHP 将其存储在文本文件中,但我一直收到 403 错误。这很可能是因为它没有写权限。如何授予脚本在目录中写入的权限?(我使用的是 Raspbian Wheezy 发行版)
<form method="POST" action="store.php">
Enter Your Name: <input type="text" name="fullname" />
</form>
和服务器
<?php
foreach($_POST as $name=>$value)
{
$contents .= "$name = $value" . "\n";
}
// save locally in cache folder
$fd = fopen("cache/filename.txt", "w");
fwrite($fd, $contents);
fclose($fd);
die();
?>