⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 delete_colleague_customer.php

📁 php+MySql写的一个企业快信系统……
💻 PHP
字号:
<?php  include("conn/conn.php");
if($colleague==true){
   $sql='delete from tb_colleague where colleague_id='.$colleague.'';
	   $rs=new com("adodb.recordset");
	   $rs->open($sql,$conn,3,3);
echo "<script>alert('同事信息删除成功!');window.location.href='indexs.php?lmbs=$_GET[lmbs]&lmlb=同事信息管理';</script>";
}

if($customer==true){
   $sql='delete from tb_customer where customer_id='.$customer.'';
	   $res=new com("adodb.recordset");
	   $res->open($sql,$conn,3,3);
echo "<script>alert('客户信息删除成功!');window.location.href='indexs.php?lmbs=$_GET[lmbs]&lmlb=客户信息管理';</script>";
}

if($note==true){
   $sql='delete from tb_note where note_id='.$note.'';
	   $ress=new com("adodb.recordset");
	   $ress->open($sql,$conn,3,3);
echo "<script>alert('短语信息删除成功!');window.location.href='indexs.php?lmbs=$_GET[lmbs]&lmlb=常用短语管理';</script>";
}


?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -