PDO变量更新错误

时间:2015-01-21 08:07:32

标签: php pdo

这些是我的查询代码。请帮我。 PDO错误:数组 PDO错误代码:00000

        <?php if ($_POST){
                    $title = trim($_POST['title']);
                    $content = trim($_POST['content']);
                    $id = $_GET['id'];

                    $save = $PDO->prepare("UPDATE `news` SET `title` = :title WHERE `id` = :id");
                    $save->execute(array(
                                                        "title" => $title,
                                                        "id" => $id
                                                    ));
                    print_r("Error: ".$save->errorInfo());
                    print $save->errorCode();
                }
        ?>

1 个答案:

答案 0 :(得分:2)

OK状态代码。

您始终打印错误,但只有在查询失败时才打印。

$sql = $save->execute(...)
if ($sql === FALSE) {
    print ('Error: ' . $save->errorCode());
}