📄 ads_checked.inc.php
字号:
<?php
defined('IN_PHPCMS') or exit('Access Denied');
$val = $val==1 ? 1 : 0;
if(is_numeric($adsid))
{
$db->query("update ".TABLE_ADS." set checked = $val where adsid=$adsid");
}
elseif(is_array($adsid))
{
$adsids = implode(",", $adsid);
$db->query("update ".TABLE_ADS." set checked = $val where adsid in ($adsids)");
}
$forward = '?mod='.$mod.'&file=createhtml';
showmessage($LANG['opration_completed'], $forward);
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -