-4

我想创建一个简单的评论系统,我想使用记事本或访问来保存数据库(评论),我倾向于使用下面的代码但它不起作用,我想问 1-使用记事本是否正确实现 PHP 代码?2-编写所需文件的所有路径是否正确(我将保存它)?3-为什么评论没有保存在记事本中。

<?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);


}



?>
4

1 回答 1

2
  1. 你可以使用mysql数据库
  2. 你不必
  3. 看看这个页面: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>
    
于 2013-05-12T03:22:03.383 回答