您好,登錄后才能下訂單哦!
利用php怎么實現(xiàn)評一個論回復刪除功能?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
一、數(shù)據(jù)庫
建立兩張表,一是pinglun表;二是huifu表
效果如下:
代碼如下:
1.主頁面 main.php
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>無標題文檔</title> <h2>朋友圈</h2> <div>內(nèi)容:</div> <div>今天很嗨</div> <div><img src="../picture/timg.jpg" width="300" height="200"></div><br> <form action="mainchuli.php" method="post"> <input type="text" hidden="hidden" value="zhangsan" name="zhangsan"> <!--因為沒有權(quán)限,這里給了一個默認值--> <textarea name="content"></textarea><input type="submit" value="評論"><!--評論顯示的地方--><!--單擊評論提交內(nèi)容進處理頁面--> </form> <!--?php require"DBDA.class.php"; //調(diào)用封裝類注意修改數(shù)據(jù)庫名 $db = new DBDA(); $sql ="select * from Pinglun"; $arr = $db--->query($sql,1); foreach($arr as $v) { echo" <div >{$v[1]} {$v[3]}</div> <div >{$v[2]}</div> <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 "<div>{$k[2]} {$k[3]}</div> <div>{$k[4]}</div> "; } } ?>
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"]; //回復文本域中的內(nèi)容 $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 "刪除失敗!"; }
關(guān)于利用php怎么實現(xiàn)評一個論回復刪除功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。