submit.php

来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 39 行

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

<html>
<head>
<title>发送手机短信</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body class="bodycolor" topmargin="5">

<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
  <tr>
    <td class="Big"><img src="/images/menu/mobile_sms.gif" WIDTH="19" HEIGHT="17"><span class="big3"> 手机短信发送情况</span>
    </td>
  </tr>
</table>

<br>

<?
 send_mobile_sms_user("",$LOGIN_USER_ID,$TO_ID,$CONTENT,0);

 $TO_ID1=str_replace("\r\n",",",$TO_ID1);
 send_mobile_sms("",$LOGIN_USER_ID,$TO_ID1,$CONTENT);

 Message("","短信已提交至短信服务器,正在后台进行发送,您可以继续进行其它工作");
?>

<br>
<div align="center">
  <input type="button" name="button1" value="继续发手机短信" class="BigButton" onClick="location='index.php?TO_ID=<?=$TO_ID?>&TO_ID1=<?=$TO_ID1?>&TO_NAME=<?=$TO_NAME?>&CONTENT=<?=urlencode($CONTENT)?>'">
</div>

</body>
</html>

⌨️ 快捷键说明

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