我最近使用html创建了自己的网站,我想添加一个评论部分,将用户的评论输出到文本文件。我该怎么做呢?
答案 0 :(得分:0)
您需要使用“操作页面”,它是一个获取表单内容的页面或脚本,并对其执行操作。
你还需要使用像php这样的脚本语言,不过有很多选择。
这将是一个良好的开端。
http://phpeasystep.com/phptu/15.html
然后像:
<html>
<head>
<title>Write to a text file</title>
</head>
<body>
<h1>Leave a comment</h1>
<form action="myfile.php" method='post'>
<textarea name='textblock'></textarea>
<input type='submit' value='Add text'>
</form>
<?php
// Open the text file
$f = fopen("textfile.txt", "w");
// Write text
fwrite($f, $_POST["textblock"]);
// Close the text file
fclose($f);
// Open file for reading, and read the line
$f = fopen("textfile.txt", "r");
// Read text
echo fgets($f);
fclose($f);
?>
</body>
</html>