基本上我想在我的网站上添加一个系统,人们可以通过表单提交想法。现在我最初是这样做的:
<form name="web_form" id="web_form" method="post" action="process-form-data.php">
<p><label>Name: </label><input type="text" name="name" id="name" /></p>
<p><label>Idea: </label><input type="text" name="idea" id="idea" maxlength="3000" height="400px" width="550px" /></p>
<p><input type="submit" name="s1″ id="s1″ value="Submit" /></p>
</form>
处理表单数据然后将信息发送到文本文件:
<?php
$name = $_POST['name'];
$idea = $_POST['idea'];
$fp = fopen("ideas.txt", "a");
$savestring = $name . "," . $idea . "n";
fwrite($fp, $savestring);
fclose($fp);
echo "<h1>You data has been saved in a text file!</h1>";
?>
但是,当在原始页面上包含 .txt 文件时,它以单行格式出现,如下所示:
姓名,想法 Sam,这是我的想法Sam,这是我的想法Sam,这是我的想法
对于不精通网络的用户来说,实现这个系统的更好方法是什么?
我想要的只是一个简单的页面,每个登录的人都可以看到所有想法。
非常感谢。