doulilou8560 2013-03-09 15:53
浏览 74
已采纳

php + ajax +评论系统错误[关闭]

i am creating a comment system using php mysql and ajax but keep geting a syntax error and i can not find the dam error this is the comments.php code if anyone help me a will appreciate that

comments.php

<?php

mysql_connect("localhost","root",""); //connect to the database: change user and pass to your own DB's user and pass
mysql_select_db("ajaxComment"); //change this to the name of your mysql database
if(isset($_POST['type'] == "addcomment")) {
    $author = mysql_real_escape_string($_POST['author']);
    $message = mysql_real_escape_string($_POST['message']);
    //the mysql_real_escape_string() is to prevent sql injections and such.
    if($author == "" || $message == "") { //one of the fields was empty...
        die("<p><font color='red'>Error: Please fill out BOTH fields.</font></p>"); //...tell them
    }
    $q1 = mysql_query("INSERT INTO `comments` (`author`, `message`) VALUES ('$author', '$message')") or die("<p>Mysql Error: <b>".mysql_error()."</b></p>"); //if there was a mysql error, let them know
    echo "<p><font color='green'>Comment added successfully. You should see it in a few seconds.</font></p>";
} elseif(isset($_POST['type'] == "getcomments")) { //ajax wants the comments.
    $q1 = mysql_query("SELECT * FROM `comments`");
    $n1 = mysql_num_rows($q1);
    if($n1 == 0) { //no comments found
        die("<p><font color='red'>No comments were found.</font></p>");
    }
    echo "<table border=1>";
    echo "<tr><td><b>Author</b></td><td><b>Comment</b></td></tr>";
    while($r1 = mysql_fetch_assoc($q1)) { //if there were any comments, loop through them
        $a = $r1['author'];
        $m = $r1['message'];
        echo "<tr><td>$a</td><td>$m</td></tr>";
    }
    echo "</table>";
} else {
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ajax Comment Tutorial</title>
<script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript"></script>
<!--The above code will get the jquery AJAX library and include it into the page-->
<script type="text/javascript">
(document).ready(function() {
    $("submit").click(function(){ //this will execute code if the submit button was clicked
        var user = $("#author").val(); //receive the contents of the field with the ID "author" and put it into the user var
        var comment = $("#message").val(); //same as above, but with the message field instead.
        $.post("comments.php",{type: "addcomment",author: user,message: comment},function(data){$("#return").html(data)});
        //the first parameter of the above, is the page to send the post data too. In this example, this page is called comments.php, so we send it there.
        //the second parameter is the post data, it goes: {pn: pd} where pn is the name you use in PHP's $_POST and pd is the data it will contain.
        //the third parameter is for the return data, in this case we sent it to the "return" div we made below our form. The first two parameters are not required.
        return false; //this will stop the page submitting, so it won't refresh.
    });
});
    function getComments() { //this function will collect the comments
        $.post("comments.php",{type: "getcomments"},function(data){$("#comments").html(data)});
        //for an explanation on this, simply read the click function above.
    }
        setInterval("getComments()",10000); //gets the comments every 10 seconds.
</script>
</head>

<body>
    <div style="font-size: 18px;">
        <p>Current Comments: </p>
        <div id="comments"></div> <!--This div will be filled with AJAX-->
        <hr />
        <p>Add a comment:</p>
        <form action="comments.php" method="post">
            <p>Username: <input type="text" name="author" id="author" /></p>
            <p>Comment: <textarea name="message" cols="70" rows="10" id="message"></textarea></p>
            <p><input type="submit" name="submit" value="Add Comment" id="submit" /></p>
        </form>
        <div id="return"></div> <!--This div will be filled with the return data from the comment processing script at the top-->
    </div>
</body>
</html>
<?php }  ?>
  • 写回答

1条回答 默认 最新

  • doyhq66282 2013-03-09 15:57
    关注

    PHP error is in this line:

    if(isset($_POST['type'] == "addcomment")) {
    

    you probably want it to be:

    if (isset($_POST['type']) && $_POST['type'] == "addcomment") {
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler