사용자 데이터를 받아 텍스트 파일에 저장하는 웹 양식을 만들려고 합니다.
이를 위해 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 서버 구성과 관련이 있다고 생각됩니다. 누구든지 이것으로 나를 도울 수 있습니까?
이것은 코드입니다
verify_send.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);
?>
마이폼.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>