📄 submit.php
字号:
<?
include_once 'inc/auth.php';
include_once 'inc/utility_sms2.php';
include_once 'inc/check_type.php';
echo '
<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">';
echo '<s';
echo 'pan class="big3"> 手机短信发送情况</span>
</td>
</tr>
</table>
<br>
';
if ((($SEND_TIME != '') AND !is_date_time ($SEND_TIME)))
{
message ('错误', '发送时间格式不对,应形如 1999-1-2 08:00:00');
button_back ();
exit ();
}
send_mobile_sms_user ($SEND_TIME, $LOGIN_USER_ID, $TO_ID, $CONTENT, 0);
$TO_ID1 = str_replace ('
', ',', $TO_ID1);
send_mobile_sms ($SEND_TIME, $LOGIN_USER_ID, $TO_ID1, $CONTENT);
message ('', '短信已提交至短信服务器,正在后台进行发送,您可以继续进行其它工作');
echo '
<br>
<div align="center">
<input type="button" name="button1" value="继续发手机短信" class="BigButton" onClick="location=\'index.php?TO_ID=';
echo $TO_ID;
echo '&TO_ID1=';
echo $TO_ID1;
echo '&TO_NAME=';
echo $TO_NAME;
echo '&CONTENT=';
echo urlencode ($CONTENT);
echo '\'">
</div>
</body>
</html>
';
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -