データベースから取得したデータがtextの中に出力されません。$titleの中にはvar_dumpで確かめたところ値は入っていました。データベースから取得した他のデータは出力していました。解決策いただけると嬉しいです。
<input type="text" name="title" value="<?php echo $title ?>"> このコードです。
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
<?php require_once("le.php"); $res=deg($id=$_GET["id"]); $title=$res['title']; $content=$res['content']; $ca=(int)$res['ca']; $pub=(int)$res['pub']; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>BlogForm</title> </head> <body> <h2>ブログ更新フォーム</h2> <form action="blog_create.php" method="POST"> <p>ブログタイトル:</p> <input type="text" name="title" value="<?php echo $title ?>"> <p>ブログ本文:</p> <textarea name="content" id="content" cols="30" rows="10"><?php echo $content ?></textarea> <br> <p>カテゴリ:</p> <select name="ca"> <option value="1" <?php if($ca===1) echo "selected" ?>>日常</option> <option value="2" <?php if($ca===2) echo "selected" ?>>プログラミング</option> </select> <br> <input type="radio" name="pub" value="1" <?php if($pub===1) echo "checked" ?>>公開 <input type="radio" name="pub" value="2" <?php if($pub===2) echo "checked" ?>>非公開 <br> <input type="submit" value="送信"> </form> </body> </html>回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/08 13:43