允许 HTTP 在 LAMP 服务器中创建文件

允许 HTTP 在 LAMP 服务器中创建文件

我试图创建一个网络表单来接受用户的数据并将其存储在文本文件中。

为此,我安装了 LAMP 服务器,并用 PHP 编写了代码。现在的问题是目标文件没有被创建。我在不同的网站上搜索了它。一旦这样的链接说

your connection (HTTP) doesn't have permission to change the text file

我使用了以下链接

http://www.webdeveloper.com/forum/showthread.php?74465-Can-PHP-write-variable-content-to-text-files

我还发布了我编写的代码。我确信我的代码是正确的。我怀疑该文件未创建的事实与 LAMP 服务器的配置有关。谁可以帮我这个事。

这是代码

确认_发送.php

<?php

echo "your data has been successfully sent\nNow printing the last name";


$Fname = $_POST['first_name'];
$Lname = $_POST['last_name'];

echo $Lname;

$file = 'people.txt';

file_put_contents($file, $Fname);

?>

myform.php

<html>
<head>
<title>Text Input Control</title>
</head>
<body>
<form action="confirm_send.php" method="post">
First name:  <input type="text" name="first_name" />
<br>
Last name:  <input type="text" name="last_name" />
<input type="submit" value="submit" name="submit">
</form>

</body>
</html>

相关内容