0

我已经尝试了一切,以及多个不同的源代码,我尝试过创建文件,所以 PHP 所要做的就是在其中写入,但仍然无法做到。

这是我在 index.html 上的 HTML

<form name="userinput" action="usersave.php" method="post">
Your name: <input type="text" name="username><br>
Your email: <input type="text" name="useremail"><br>
Your story: <textarea rows="3" cols="50" name="userstory"></textarea><br>
<input type="submit" value="Submit!" name="submit">
</form>

这是我在 usersave.php 上的 PHP

<header>
<?php
    $file = 'output.txt';
    $buffer = $_POST['userstory'];

    if (file_exists($file)) {
            $buffer = file_get_contents($file) . "\n" . $buffer;
    }

    $success = file_put_contents($file, $buffer);
?>
</header>

任何帮助表示赞赏,请,谢谢。

4

4 回答 4

1

编辑:您需要安装某种服务器环境才能开始。

我推荐WAMP

于 2013-04-05T23:13:21.890 回答
1

如果您不使用任何主机,那么就没有服务器来运行 php,浏览器不会解析 PHP,服务器会解析,所以如果没有服务器,则不会解析任何 PHP。

于 2013-04-05T23:17:56.017 回答
0
<?php
$file_path = "text_file.txt";
$file_handle = fopen($file_path, 'r'); // OPEN FILE READY FOR 'R'eading!
$text_data = fread($file_handle, filesize($file_path));  //Read actual data in file
print $text_data; // print the data you can use echo if you like
fclose($file_handle); // Close the file read / buffer


$data_to_write = "This is the data that will be written to disk!";
$file_path = "new_file.txt";
$file_handle = fopen($file_path, 'w');  // OPEN FILE READY FOR 'W'riting!
fwrite($file_handle, $data_to_write);
fclose($file_handle);
?>
于 2013-04-05T23:19:57.407 回答
-1

我没有使用任何主机,而是直接从我的 PC 将文件打开到 Chrome 中。

如果没有服务器(例如 Apache),您将无法运行 PHP 文件。PHP 文件是“服务器端”脚本;脚本在服务器上执行,结果输出由服务器发送到浏览器。

看到这个问题:

在没有 Web 服务器的情况下解析 HTML 中的 PHP 内容

或者试试谷歌搜索

于 2013-04-05T23:21:21.577 回答