?? send.php
字號:
<?
include_once '../auth.php';
include_once 'inc/utility_sms1.php';
echo '
<html>
<head>
<title>發送短信</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
';
$query = (((''.'SELECT * from USER where USER_NAME=\'').$TO_NAME).'\'');
$cursor = exequery ($connection, $query);
if ($ROW = mysql_fetch_array ($cursor))
{
$TO_ID = $ROW['USER_ID'];
send_sms ('', $LOGIN_USER_ID, $TO_ID, 0, $CONTENT);
echo '短信發送成功<br>
<a href="index.php?P=';
echo $P;
echo '">返回</a>
';
}
else
{
echo '指定的收信人姓名不存在<br>
<a href="javascript:history.back()">返回</a>
';
}
echo '
</body>
</html>';
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -