0

由于某种原因,此脚本未根据查询正确更新数据库。有人知道为什么脚本没有更新吗?请告诉我!

<?php
session_start();
include '../connect.php';
if(!isset($_SESSION['id'])){
    header("Location: ../index.php");
}
if(isset($_POST['submit'])){
    $id=$_POST['id'];
    $postid=$_POST['postid'];
    $content=$_POST['content'];
    $title=$_POST['title'];
    echo "<pre>";
    print_r($_POST);
if(!empty($content)){
    $content = mysql_real_escape_string($content);
} else {
    echo 'You need to write something in your comment!';
}

    $upd=mysql_query("UPDATE replies SET reply_content='$content' WHERE reply_id='$postid'");
    if(!$upd){
        echo 'Error: '.mysql_error();
    }
} else {
    if (isset($_GET['id'])){
      $postid = $_GET['id'];
      $id=$_SESSION['id'];
            $q = mysql_query("SELECT * FROM `replies` where `reply_id`='$postid'");
            if(!$q){
                    echo 'Error: '.mysql_error();
            }
        $res = mysql_fetch_assoc($q);
        $q2 = mysql_query("SELECT topic_subject FROM `topics` where `topic_id`='$postid'");
        $res2 = mysql_fetch_assoc($q2);
        if(!q2){
            echo 'Error: '.mysql_error();
        }
        if ($res['reply_by'] == $id){

        } else {
            header("Location: ../pagenotfound.html");
        }
}
?>

<form action="edit.php">
    <input type="text" name="title" value="<?php echo $res2['topic_subject'] ?>" disabled="disabled" />
    <br />
    <textarea rows="20" name="content" cols="50"><?php echo $res['reply_content']?></textarea>
    <input type="hidden" name="postid" value="<?php echo $postid ?>" />
    <br />
    <input type="submit" name="submit" value="Submit" />
</form>
<?php
}
?>

如果您需要更多信息,请告诉我!

更新:问题是当我单击提交时,它会将我发送到仍然列出表单的页面。我在尝试 print_r($_POST) 时注意到了这个问题,因为它实际上并没有打印 $_POST,我认为表单或它检查 isset 是否提交的位置有问题。

4

1 回答 1

1

尝试:

if(!empty($content)){
    $content = mysql_real_escape_string($content);
} else {
    echo 'You need to write something in your comment!';
    // if $content is mandatory, you should put a die("error") here
}

你应该用一个简单的方法检查你的 $_POST 数组

echo "<pre>";
print_r($_POST);

并确保 POST 具有您正在寻找的变量(首先:提交)

编辑:将 print_r($_POST) 放在之前使用它之前:

if(isset($_POST['submit'])){

错误:您忘记设置表单方法类型。尝试:

<form action="edit.php" method="post">

没有它,表单会将参数作为 $_GET 发送。

这是一个简单的 php-form 教程。http://php.net/manual/en/tutorial.forms.php

于 2013-10-13T22:23:55.297 回答