📄 update.php
字号:
<?php
include_once( "inc/auth.php" );
include_once( "inc/check_type.php" );
include_once( "inc/utility_field.php" );
echo "\r\n<html>\r\n<head>\r\n<title>提交客户修改 </title>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">\r\n</head>\r\n\r\n<body class=\"bodycolor\">\r\n";
$query = "update CONTACT set CONTACT_TYPE='".$CONTACT_TYPE."',CUSTOMER_ID='{$CUSTOMER_ID}',CONTACT_CONTENT='{$CONTACT_CONTENT}',TIME_COST='{$TIME_COST}',MONEY_COST='{$MONEY_COST}',CONTACT_DATE='{$CONTACT_DATE}',LINKMAN_ID='{$LINKMAN_ID}',MEMO='{$MEMO}',MEMO1='{$MEMO1}',SATISFY='{$SATISFY}',FEEDBACK='{$FEEDBACK}',USERDEF1='{$USERDEF1}',USERDEF2='{$USERDEF2}',USERDEF3='{$USERDEF3}',USERDEF4='{$USERDEF4}',USERDEF5='{$USERDEF5}' where CONTACT_ID='{$CONTACT_ID}'";
exequery( $connection, $query );
save_field_data( "CONTACT", $CONTACT_ID, $_POST );
if ( $FLAGSOURCE == "ad_query" )
{
$urlstr1 = str_replace( "%", "&", $QUERY_LIST );
header( "location: ad_query/list.php?".$urlstr1 );
}
else
{
header( "location: index.php?".$QUERY_LIST );
}
echo "</body>\r\n</html>\r\n";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -