?? delete.php
字號:
<?
include_once '../auth.php';
$query = ((''.'select TO_ID from SMS where SMS_ID=').$SMS_ID);
$cursor = exequery ($connection, $query);
if ($ROW = mysql_fetch_array ($cursor))
{
$USER_ID = $ROW['TO_ID'];
if (($USER_ID == $LOGIN_USER_ID))
{
$query = ((''.'delete from SMS where SMS_ID=').$SMS_ID);
exequery ($connection, $query);
header (((''.'location: index.php?P=').$P));
}
else
{
echo '非法操作';
}
}
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -