使用php将html表单数据保存到txt文件

时间:2019-01-11 10:31:19

标签: php html web-hosting html-form

我是不熟悉PHP的人,我有一种HTML表单的登录表单,我想将输入值从html表单存储到txt文件中,所有这些文件都托管在免费托管站点上(我将其保存为学习目的)。我已经尝试了很多线程来实现这一目标,但是到目前为止,它们都没有对我有用。所以任何人都可以帮助我,我已经尝试过了,就像在代码中那样。

一个HTMl表单,一个php代码文件和一个txt文件,其中三个托管在免费的虚拟主机000webhost上。

<!DOCTYPE html>
<html>

<BODY>

<form action = "post.php" method="POST">
    <h1> Please enter your information to create a new login account</h1>
    <p>
        <label>Login Name:</label><input type = "text"  name = "name" />
        <label>Password:</label><input type = "password" name = "pwd" />
        <br/>
        <br/>
    </p>
    <input type = "submit" name="submit_btn" id = "submit" value = "submit"/>
    <input type = "reset"  id = "reset" value = "reset"/>
</form>
</BODY>
</html>

php文件

<?php

 if(isset($_POST['submit_btn']))
 {
  $username = $_POST['name'];
  $password = $_POST['pwd'];
  $text = $username . "," . $password . "\n";
  $fp = fopen('data.txt', 'a+');

    if(fwrite($fp, $text))  {
        echo 'saved';

    }
fclose ($fp);    
}
?>

我已经上传了data.txt。

1 个答案:

答案 0 :(得分:0)

这很可能是权限问题。使用is_writable检查写入权限,或使用ini_set('display_errors', true);启用错误输出

相应地更改data.txt的权限。