📄 add.php
字号:
<?
include_once("inc/auth.php");
include_once("inc/check_type.php");
?>
<html>
<head>
<title>增加合同明细</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body class="bodycolor">
<?
if($LINE_ID=="")
{
$query="INSERT into ACTIVITY_LINE (ACTIVITY_ID,CUSTOMER_ID,CUSTOMER_DESC)
values('$ACTIVITY_ID','$CUSTOMER_ID','$CUSTOMER_DESC')";
}
else
{
$query="update ACTIVITY_LINE set ACTIVITY_ID='$ACTIVITY_ID',CUSTOMER_ID='$CUSTOMER_ID',CUSTOMER_DESC='$CUSTOMER_DESC' where LINE_ID='$LINE_ID'";
}
exequery($connection,$query);
?>
</body>
</html>
<script>
location="index.php?ACTIVITY_ID=<?=$ACTIVITY_ID?>&<?=$QUERY_LIST?>";
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -