📄 delete_sms.php
字号:
<?php
include_once( "inc/auth.php" );
if ( $DELETE_STR == "" )
{
$DELETE_STR = 0;
}
else
{
$DELETE_STR = substr( $DELETE_STR, 0, -1 );
}
$query = "delete from SMS2 where SMS_ID in (".$DELETE_STR.") and SEND_FLAG!='1'";
exequery( $connection, $query );
header( "location: index.php" );
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -