簡體   English   中英

為什么我的UPDATE查詢不起作用? 的MySQL

[英]Why doesn't my UPDATE query work? MySQL

我在博客網站上工作,目前只能制作博客編輯頁面。 由於某種原因,我的博客UPDATE查詢不起作用,而且我不知道為什么它不起作用。 我沒有收到錯誤。 它只是不更新​​任何內容。

我正在從一個舊博客中收集數據,並將其插入表單中。 然后,我嘗試使用更新查詢來更新它。

到目前為止,這是我的代碼:

aanpassen.php

    <?php

    $error=false;
    include_once('includes/connection.php');
    include_once('includes/article.php');

    $article = new Article;


    if ( isset( $_POST ['id'], $_POST['title'], $_POST['content'] ) ) {

        $id = $_POST ['id'];
        $title = $_POST['title'];
        $content = nl2br( $_POST['content'] );

        if (empty($title) || empty($content) || empty($id)){

            $error='All fields are required!';

        } else {
$query = $pdo->prepare("UPDATE articles SET article_title = :title, 
                        article_content = :content WHERE id=:id");
            if( $query ){
$id = $_POST ['id'];
$query->bindValue(':title', $title);
$query->bindValue(':content', $content);
$query->bindValue(':id', $id);
$query->execute();
                header( sprintf( 'Location: index.php?status=%s', $result ? 'ok' : 'failed' ) );
            } else {
                exit('bad foo - unable to prepare sql query');
            }
        }
    }

    if ( isset( $_GET['id'] ) ) {
        $id = $_GET['id'];
        $data = $article->fetch_data( $id );
    } else {
        header('Location: index.php');
        exit();
    }

?>

<form action="aanpassen.php" method="post" autocomplete="off">
    <input type="hidden" name="id" value="<?php echo $id; ?>" />
    <input type="text" name="title" class="titleform" placeholder="Blog naam" value="<?php echo $data['article_title']; ?>" />
    <textarea name="content" id="summernote" rows="15" cols="50"><?php echo $data['article_content'] ?></textarea>
    <input type="submit" class="buttonclass" value="Aanmaken" />
</form>
<?php
if ($error)
    printf('<h1>%s</h1>', $error);
?>

connection.php

<?php 
try {
$pdo = new PDO('mysql:host=localhost;dbname=cms', 'root', 'root');
} catch (PDOException $e) {
    exit('Database error.');
}
?>

您在所有bindValue參數中都錯過了“:”。 應該是這樣的:

$query->bindValue(':title', $title); $query->bindValue(':content', $content); $query->bindValue(':id', $id);

而且if (empty($title) or empty($content) or empty($id))應該是if (empty($title) || empty($content) || empty($id))就像這樣

最初訪問aanpassen.php時,它的格式正確-aanpassen.php?id = 1 ??

否則,當我對其進行測試時,您的代碼似乎還不錯。

只是改變:

$query->execute();
header( sprintf( 'Location: index.php?status=%s', $result ? 'ok' : 'failed' ) );

至:

$success = $query->execute();
header( 'Location: index.php?status='.( $success ? 'ok' : 'failed' ) );exit();

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM