首先,这不是我的代码,我只是需要改变一点。
我需要知道如何将消息写入用户发布消息的同一文件中。
以下是用户可以发布消息的页面:
<html>
<head>
<title>Form to Flat File</title>
</head>
<body>
<form action="sendinfo.php" method="get">
Your Name:<br />
<input type="text" name="name"><br />
Your Message:<br />
<textarea name="message"></textarea><br />
<input type="submit" value="Send Info">
</form>
</body>
</html>
另一个是将消息写入PHP文件:
<html>
<head>
<title>Form to Flat File</title>
</head>
<body>
<?php
include('config.php');
$user = $_GET["name"];
$message = $_GET["message"];
print("<b>Thank You!</b><br />Your information has been added! You can see it by <a href=savedinfo.php>Clicking Here</a>");
$out = fopen("savedinfo.php", "a");
if (!$out) {
print("Could not append to file");
exit;
}
fputs ($out,implode,("\n"));
fwrite($out,"<b>$user</b><br />$message<br /><br />");
fclose($out);
?>
</body>
</html>
我几乎只想要一页上的所有内容,我接近这样做,但它不会让我写到同一页面上。我敢肯定,我有可能没有足够的经验。请帮忙!
答案 0 :(得分:0)
您想要的是将两个文件的内容放在一个文件中,但只有在提交了表单时才执行第二个文件的内容。
首先,将表单的方法值更改为POST,并将所有对 $ _ GET 的引用替换为 $ _ POST
然后创建一个包含
的文件<html>
<head>
<title>Form to Flat File</title>
</head>
<body>
<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// here put content of the file that stores form values in a file
// just remove all html code and leave only PHP code
}
?>
// here put content of the file that displays the form
// just remove HTML, HEAD and BODY tags first
</body>
</html>