php完成評論和刪除功能

來源:互聯網
上載者:User
這篇文章主要為大家詳細介紹了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 "刪除失敗!";}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.