我一直在尝试制作一个简单的建议框
来自 .html 页面的 HTML
<form action="suggestions.php">
Suggest some content for this page: <input type="text" name="suggestion"></br>
</br>
<input type="submit">
</form>
来自Suggestions.php页面的PHP
<?php
$filename = date('Format String');
$Content = $_POST["suggestion"];
file_put_contents('./suggestions/'.$filename, $Content);
?>
它应该做什么
- 允许匿名输入建议
- 在“建议”目录中创建带有建议的文件
- 将文件命名为日期和时间到秒