我想创建一个简单的评论系统,我想使用记事本或访问来保存数据库(COMMENTS), 我倾向于使用下面的代码,但它没有用,我想问 1-是否有权使用NOTEPAD来实现PHP代码? 2-是否有权写下所需文件的所有途径(我会保留哪些信息)? 3-为什么评论在NOTEPAD中得到了解释。
<?php
if ($_post)
{
$name = $_POST('name');
$content = $_POST('commentcontent');
$handle = fopen("C:\Users\User\Desktop\simester8\text.txt", "a+");
fwrite($handle,' $name ', ' $content ');
fclose($handle);
}
?>
答案 0 :(得分:2)
查看此页面:http://www.tizag.com/phpT/filewrite.php
if(isset($_POST['submit']))
{
$handle = fopen("text.txt", "a+") or die("can't open file");
$name = $_POST['name'];
$content = $_POST['commentcontent'];
fwrite($handle, $name , $content );
fclose($handle);
}
<form method="POST" action="<?=$_SERVER['PHP_SELF']?>">
<input type=text name="name" id="name">
<input type=text name="commentcontent" id="commentcontent">
<button type="submit" value="submit" name="submit" class="btn">submit</button>
</form>