PHP에서 게시판 삭제 기능을 구현하는 방법: 1. update.php 파일을 생성합니다. 2. "공용 함수 delete(){require_once 'config.inc.php'...}" 메소드를 사용하여 구현합니다. 게시판 삭제 기능.
이 글의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
PHP는 게시판 삭제 기능을 어떻게 구현하나요?
PHP는 미니프로그램의 메시지판 기능을 구현하고 있으며, 자신이 올린 메시지만 수정, 삭제할 수 있습니다
PHP는 미니프로그램의 메시지판 기능을 구현합니다
여기서 제가 구현한 것은 자신의 메시지만 수정 및 삭제할 수 있는 게시판 아래 사진과 같이
이전 글에 이어 새로운 기능이 추가된 내용이니 더 이상 헛소리는 하지 않고 수정 및 추가된 코드를 게시하겠습니다.
logs.wxml
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('用户点击取消') } } }) }, })
여기서는 이전 글에서 쿼리하고 댓글을 남기는 PHP는 변경되지 않았음을 알려드립니다. 추가 수정 페이지와 PHP 파일이 추가되었습니다. 수정 페이지는 아래와 같습니다
그러면 수정 페이지와 PHP가 삭제되고 메시지 페이지가 배치되지만 배경 파일은 수정 페이지
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 'config.inc.php'; $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(); } ?>
추천 학습: "PHP 비디오 튜토리얼"
위 내용은 PHP에서 게시판 삭제 기능을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!