formで送信された変数$idを受け取ってそれをクエリでparent_id=$_POST[$id]にして新たに子を追加できないかと思い質問させていただきました。おそらくindex.phpに異常があるかと思いますが、どこが悪いのかわかりません。
現在created.phpで入力してもparent_idが受け取った$intにならずにparent_id=nullとして挿入されてしまっています。
受け取ってINSERTするindex.php↓
php
1<?php 2require_once('dbconnect.php'); 3require_once('test.php'); 4 5$subject = $_POST['subject']; 6$body = $_POST['body']; 7$post_user = $_POST['post_user']; 8$parent_id = $_POST['$int']; 9 10 11// create.phpから送信されてきた場合 12 if (isset($_POST["subject"], $_POST['body'], $_POST["post_user"])) { 13 //件名が空のとき 14 if ($_POST["subject"] == '') { 15 $isSubject = false; 16 }else { 17 $isSubject = true; 18 } 19 //本文がからのとき 20 if ($_POST["body"] == '') { 21 $isBody = false; 22 }else { 23 $isBody = true; 24 } 25 //投稿ユーザーが空のとき 26 if ($_POST["post_user"] == '') { 27 $isPost_user = false; 28 } else { 29 $isPost_user = true; 30 } 31 } 32 33if($_SERVER['REQUEST_METHOD']==='POST'){ //二重登録防止 34 // データベースに追加する 35 if (isset($isSubject, $isBody, $isPost_user)) { 36 if ($isSubject && $isBody && $isPost_user) { 37 try { 38 // トランザクション開始 39 // $pdo->beginTransaction(); 40 $sql = "insert into t_bbs (subject, body, post_user, parent_id) values (:subject, :body, :post_user, :parent_id)"; 41 $stmt = $db->prepare($sql); 42 $stmt->bindValue(":subject", $_POST["subject"], PDO::PARAM_STR); 43 $stmt->bindValue(":body", $_POST["body"], PDO::PARAM_STR); 44 $stmt->bindValue(":post_user", $_POST["post_user"], PDO::PARAM_STR); 45 //親の子レコードとして追加するなら親のidをparent_idにしてINSERT 46 $stmt->bindValue(":parent_id", $parent_id, PDO::PARAM_INT); 47 $stmt->execute(); 48 // $pdo->commit(); 49 }catch (PDOException $e){ 50 print('Error:'.$e->getMessage()); 51 die(); 52 } 53 } 54 } 55 header('Location:./'); 56}
↓test.phpからidを受け取ってindex.phpに送るcreate.php
php
1<?php 2 $int = intval($_POST['id']); 3 var_dump($int); //int(数字)が出力成功しています 4 5 ?> 6<!DOCTYPE html> 7<html lang="ja"> 8<head> 9<meta charset="UTF-8"> 10<title>新規</title> 11</head> 12<body> 13<h1>新規</h1> 14<form action="index.php" method="POST"> 15 <div>件名: 16 <input type="text" name="subject" value=""> 17 </div><br> 18 <div>本文: 19 <textarea name="body" rows="8" cols="80"></textarea> 20 </div><br> 21 <div>投稿ユーザー名: 22 <input type="text" name="post_user" value=""> 23 </div><br> 24 <input type="hidden" name="<?php $int ?>"> 25 <input type="submit" value="投稿"> 26</form> 27<p> 28 <a href="index.php">投稿一覧へ</a> 29</p> 30</body> 31</html> 32
↓idをcreate.phpに送るtest.php
[コメント]を押すとそのidをcreate.phpに送信します。汚いですがご容赦ください
php
1 public function display($tree = null){ 2 // $treeの初期値セット 3 if ($tree === null) { 4 $tree = $this->tree; 5 } 6 // echo "<ol>"; 7 foreach ($tree as $p => $t) { 8 $data = $this->data[$p]; 9 echo "<table>"; 10 if($data['parent_id']===null){ //親レコードの場合 11 echo <<<EOT 12 <tr> 13 <td> 14 <form action="delete.php" method="GET" onSubmit="return check()" id="delete"> 15 <input form="delete" type="checkbox" name="id[]" value="{$p}"> 16 </form> 17 </td> 18 <td>{$p}</td> 19 <td> 20 <form action="edit.php" method="GET"> 21 <a href="edit.php?id={$p}">{$data['subject']}</a> 22 </form> 23 </td> 24 <td>{$data['post_user']}</td> 25 <td>{$data['created_at']}</td> 26 <form action="create.php" method="POST"> 27 <td><button onclick="location:href='create.php'" name="id" value="{$p}">[コメント]</button></td> 28 </form> 29 </tr> 30 EOT; 31 }else{ //子レコードの場合 32 // 内容の表示 33 echo <<<EOT 34 └{$p} 35 <form action="edit.php" method="GET"> 36 <a href="edit.php?id={$p}">{$data['subject']}</a> 37 </form> 38 {$data['post_user']}{$data['created_at']} 39 EOT; 40 } 41 // さらに下の階層があれば再帰的に表示 42 if (count($t) > 0) { 43 $this->display($t); 44 } 45 echo "</table>"; 46 } 47 // echo "</ol>"; 48 } 49} 50 51$tree = new Tree($data);
テーブル定義
MariaDB
1 Table: t_bbs 2Create Table: CREATE TABLE `t_bbs` ( 3 `id` int(11) NOT NULL AUTO_INCREMENT, 4 `name` varchar(255) DEFAULT NULL, 5 `subject` varchar(255) DEFAULT NULL, 6 `body` text DEFAULT NULL, 7 `parent_id` int(11) DEFAULT NULL, 8 `post_user` varchar(8) DEFAULT NULL, 9 `created_at` datetime NOT NULL DEFAULT current_timestamp(), 10 `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), 11 `deleted_at` datetime DEFAULT NULL, 12 KEY `id` (`id`) 13) ENGINE=InnoDB AUTO_INCREMENT=1633 DEFAULT CHARSET=utf8
回答1件
あなたの回答
tips
プレビュー