PDO文章:填写db的输入

时间:2017-12-11 15:43:41

标签: php database pdo fill article

我需要用数据库中的数据填充txt输入和textarea,之后我将进行编辑。我找不到错误。有人可以帮帮我吗?

session_start();

include_once('../includes/conn.php');
include_once('../includes/article.php');

$article= new Article;

if(isset($_SESSION['logged_in'])){

    if(isset($_POST['id'])){
        $id=$_POST['id'];

        $query=$pdo->prepare('SELECT * FROM articles WHERE article_id=?');
        $query->bindValue(1,$id);
        $query->execute();
    }

    $articles=$article->fetch_all();
    ?>
    <html>
        <form action="" method="post" autocomplete="off">

            <input type="text" name="title" value="<?php echo 
            $article['article_title'];?>"/><br/><br/>

            <textarea rows="15" cols="50" value="<?php echo 
            $article['article_content'];?>" name="content"></textarea><br/><br/>

            <input type="submit" value="Add article"/>
        </form>
    </html>
    <?php
} else {
    header('Location: index.php');
}

1 个答案:

答案 0 :(得分:-4)

你需要为每篇文章循环$文章,它们填充表单的字段。