add_user_submit.php

来自「通达OA视频源代码 1.下载通达OA2008,安装好. 2.复制webroo」· PHP 代码 · 共 29 行

PHP
29
字号
<?
include_once("inc/auth.php");
include_once("inc/utility_sms1.php");
?>

<html>
<head>
<title>邀请更多参会人员</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<body class="bodycolor" topmargin="5">

<?
//邀请更多用户
if($TO_ID!="" && $SMS_ID!="")
{
   $query = "SELECT * from SMS,SMS_BODY where SMS.BODY_ID=SMS_BODY.BODY_ID and SMS_ID='$SMS_ID'";
   $cursor= exequery($connection,$query);
   if($ROW=mysql_fetch_array($cursor))
      $REMIND_URL=$ROW["REMIND_URL"];

   //形成短信链接
   if($REMIND_URL!="")
      send_sms("",$LOGIN_USER_ID,$TO_ID,0,$CONTENT,$REMIND_URL);
}

Message("","邀请已发送给:".$TO_NAME);
?>

<br><center><input type="button" class="BigButton" value="关闭" onclick="window.close();"></center>

⌨️ 快捷键说明

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