delete.php
来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 31 行
PHP
31 行
<?
include_once("inc/auth.php");
?>
<html>
<head>
<title>删除联系人</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body class="bodycolor">
<?
if($LINKMAN_ID!="")
{
$query="delete from LINKMAN where LINKMAN_ID='$LINKMAN_ID'";
}
else
{
$delete_str="'".str_replace(",","','",substr($delete_str,0,-1))."'";
$query="delete from LINKMAN where LINKMAN_ID in ($delete_str)";
}
exequery($connection,$query);
header("location: index.php?CUSTOMER_NAME=$CUSTOMER_NAME&CUSTOMER_CODE=$CUSTOMER_CODE&CUSTOMER_SHORT=$CUSTOMER_SHORT&LINKMAN_NAME=$LINKMAN_NAME&ADD_HOME=$ADD_HOME&SEX=$SEX&ORDERFIELD=$ORDERFIELD&ORDERTYPE=$ORDERTYPE&CUR_PAGE=$CUR_PAGE");
?>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?