📄 contact_man.php
字号:
<?
########################################
#OsoonCrm
#联系人操作
########################################
include "include/db.inc.php";
include "include/check.inc.php";
//include "include/array.inc.php";
?>
<?
///////////////////////////////////////////////////
// 删除
if ($action == "delete")
{
// 联系人表
$sql = "delete from $tbl_crm_contact where ContactId='$delid'";
mysql_query($sql);
// 联系人家属表
$sql_folk = "delete from $tbl_crm_contact_folk where ContactId='$delid'";
mysql_query($sql_folk);
// 返回列表
echo "<p style=\"font:14.8px\">删除成功!稍候,页面将返回到列表......</p>";
echo "<meta http-equiv=\"refresh\" content=\"3;URL=contact_list.php\">";
exit;
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -