這篇文章主要為大家詳細介紹了php實現評論回複刪除功能,具有一定的參考價值,感興趣的小夥伴們可以參考一下
簡單的評論回複刪除功能,具體內容如下
一、資料庫
建立兩張表,一是pinglun表;二是huifu表
效果如下:
代碼如下:
1.首頁面 main.php
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>無標題文檔</title> <h1>朋友圈</h1><p>內容:</p><p>今天很嗨</p><p><img src="../picture/timg.jpg" width="300" height="200"></p><br><form action="mainchuli.php" method="post"> <input type="text" hidden="hidden" value="zhangsan" name="zhangsan"> <!--因為沒有許可權,這裡給了一個預設值--> <textarea name="content"></textarea><input type="submit" value="評論"><!--評論顯示的地方--><!--單擊評論提交內容進處理頁面--></form> <!--?php require"DBDA.class.php"; //調用封裝類注意修改資料庫名 $db = new DBDA(); $sql ="select * from Pinglun"; $arr = $db--->query($sql,1); foreach($arr as $v) { echo" <p style="color:blue">{$v[1]} {$v[3]}</p> <p style="color:blue">{$v[2]}</p> <form action="delchuli.php?id={$v[0]}" method="post"> //刪除按鈕 <input type="submit" value="刪除"> </form> <form action="huifuchuli.php?id={$v[0]}" method="post"> //回複按鈕 <textarea name="Comment"></textarea><input type="submit" value="回複"> </form> "; $dc = new DBDA(); $sql1 ="select * from huifu where jieshouid ={$v[0]}"; //查詢回複表中的id和傳過去的id是不是一樣的 $arr1 = $dc->query($sql1,1); foreach($arr1 as $k) { echo "<p>{$k[2]} {$k[3]}</p> <p>{$k[4]}</p> "; } } ?>
2.評論處理頁面 pinglunchuli.php
<?php$zhangsan = $_POST["zhangsan"];$content = $_POST["content"];$time = date("Y-m-d H:i:s"); require "DBDA.class.php";$db = new DBDA();$sql = "insert into Pinglun values('','{$zhangsan}','{$content}','{$time}')";$db->query($sql);header("location:main.php");
3.回複處理頁面 huifuchuli.php
<!--?php$id = $_GET["id"]; //將點擊回複的評論id傳過來$Comment = $_POST["Comment"]; //回複文本域中的內容$me = "me"; //這裡是給定義了一個人$Times = date("Y-m-d H:i:s"); require "DBDA.class.php";$db = new DBDA();$sql = "insert into huifu values('','{$id}', '{$me}','{$Times}','{$Comment}')";$db--->query($sql);header("location:main.php");
4.刪除處理頁面 delchuli.php
<?php$id = $_GET["id"];require "DBDA.class.php";$db = new DBDA();$sql = "delete from Pinglun where id='{$id}'";if($db->query($sql)){ header("location:main.php");}else{ echo "刪除失敗!";}