Home  >  Article  >  Backend Development  >  How to implement message board deletion function in php

How to implement message board deletion function in php

藏色散人
藏色散人Original
2021-11-01 09:26:022769browse

php method to implement the message board deletion function: 1. Create the update.php file; 2. Implement the message board through the "public function delete(){require_once 'config.inc.php'...}" method Just delete the function.

How to implement message board deletion function in php

The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer

How does php realize the message board deletion function?

PHP implements the message board function of the mini program. You can only modify and delete your own messages

PHP implements the mini program message board function

Here I implemented a message that can only modify and delete my own messages, as shown in the figure below
How to implement message board deletion function in php
This is a continuation of the previous article New features have been added, so I won’t waste any more nonsense and will post the modified and added code

logs.wxml


  留言内容:      
  用户名:{{item.uname}}   内容:{{item.content}}     修改     删除

logs.js

Page({
  data: {
  },
  /**
   * 生命周期函数--监听页面加载---获取从其他页面传来的值经行接收
   */
  onLoad: function(options) {
    this.setData({
      id:options.id,
      uid: options.uid,
      uname: options.uname
    })
    var that = this
    that.setData({
      uids:that.data.uid
    })
    wx.request({
      url: 'http://127.0.0.1/liuyanban.php',
      data:{
        'a':1
      },
      header: { 'content-type': 'application/json'},
      method: 'GET',
      dataType: 'json',
      success: function(res) {
         that.setData({
           liuyantext: res.data['0'],
         })
        console.log('查询值', res.data['0'])
      },
    })
  },
  liuyanban: function(e) {
    if(e.detail.value.content != ""){
    var that = this
    wx.request({
      url: 'http://127.0.0.1/liuyanban.php',
      data: {
        "uid":this.data.uid,
        "uname":this.data.uname,
        "content":e.detail.value.content
      },
      header: { 'content-type': 'application/x-www-form-urlencoded'},
      method: 'POST',
      dataType: 'json',
      success: function(res) {
        console.log('插入数据值:',res)
      },
    })
    }
    console.log('留言内容',e.detail.value.content)
    console.log('uid:', this.data.uid)
    console.log('uname:', this.data.uname)
  },
  deletei: function (e) {
    wx.showModal({
      title: '提示',
      content: '是否确定删除',
      success(res) {
        if (res.confirm) {
          wx.request({
            url: 'http://127.0.0.1/update.php',
            method:"get",
            header: { 'content-type': 'application/json'},
            dataType:'json',
            data:{
              'a':2,
              'id': e.currentTarget.dataset.src
            },
            success:function(){
              wx.showToast({
                title: '删除成功',
                icon: 'none',
              })
            }
          })
          console.log('用户点击确定')
        } else if (res.cancel) {
          console.log('用户点击取消')
        }
      }
    })
  },
})

Let me tell you here that the PHP for querying and leaving messages in the previous article has not changed. An additional modification page and a PHP file have been added. The modification page is as shown below
How to implement message board deletion function in php
Then it is to modify the page and PHP. The deletion is placed on the message page but the background file is linked to the modification page

##update.wxml


       内容:           

update.js

Page({
  data: {
  },
  onLoad: function (options) {
    this.setData({
      id: options.id,
    })
    var that = this
    wx.request({
      url: 'http://127.0.0.1/update.php',
      data: {
        'a': 1,
        'id':that.data.id
      },
      header: { 'content-type': 'application/json' },
      method: 'GET',
      dataType: 'json',
      success: function (res) {
        that.setData({
          updatei: res.data,
        })
        console.log('查询值',res.data)
      },
    })
  },
  update:function(e){
    wx.showToast({
      title: '修改成功',
      icon: 'none',
    })
    wx.request({
      url: 'http://127.0.0.1/update.php',
      method: "GET",
      header: { 'content-type': 'application/json' },
      data:{
        "id":this.data.id,
        "content":e.detail.value.content
      },
      dataType:'json',
      success:function(res){
        wx.navigateBack({
          delta: 1
        })
      }
    })
    console.log('content',e.detail.value.content)
  },
  
})

update.php

<?php class update{
		//查询
		public function select(){
			require_once &#39;config.inc.php&#39;;
			$sql = "select * from wt_blog where id = ?";
			try{
				$stmt = $link -> prepare($sql);
				$stmt -> execute([$_GET['id']]);
				$row = $stmt->fetch(PDO::FETCH_ASSOC);
				//要转成json格式给小程序才可以
				echo json_encode([$row['content']]);
			}catch(PDOException $e){
				die($e->getMessage());
			}	
		}
		//修改
		public function edit(){
			require_once 'config.inc.php';
			$sql = "update wt_blog set content = ? where id = ?";
			try{
				$stmt = $link -> prepare($sql);
				$stmt -> execute([$_GET['content'],$_GET['id']]);
			}catch(PDOException $e){
				die($e->getMessage());
			}
		}
		//删除
		public function delete(){
			require_once 'config.inc.php';
			$sql = 'delete from wt_blog where id=?';
			try{
				$stmt = $link -> prepare($sql);
				$stmt -> execute([$_GET['id']]);
			}catch(PDOException $e){
				die($e->getMessage());
			}
		}
	}
	$a = new update();
	if($_GET['a'] == 1){
		$a->select();
	}elseif($_GET['a'] == 2){
		$a->delete();
	}else{
		$a->edit();
	}
?>
Recommended study: "

PHP Video Tutorial"

The above is the detailed content of How to implement message board deletion function in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn