ad_edit.php

来自「这是matlab的一个小程序」· PHP 代码 · 共 60 行

PHP
60
字号
<?php
require(dirname(__FILE__)."/config.php");
CheckPurview('plus_广告管理');
require_once(DEDEINC.'/typelink.class.php');
if(empty($dopost))
{
	$dopost = '';
}
$aid = ereg_replace('[^0-9]','',$aid);
$ENV_GOBACK_URL = empty($_COOKIE['ENV_GOBACK_URL']) ? "ad_main.php" : $_COOKIE['ENV_GOBACK_URL'];

if($dopost=='delete')
{
	$dsql->ExecuteNoneQuery("Delete From `#@__myad` where aid='$aid' ");
	ShowMsg("成功删除一则广告代码!",$ENV_GOBACK_URL);
	exit();
}
else if($dopost=="getjs")
{
	require_once(DEDEINC.'/oxwindow.class.php');
	$jscode = "<script src='{$cfg_phpurl}/ad_js.php?aid=$aid' language='javascript'></script>";
	$showhtml = "<xmp style='color:#333333;background-color:#ffffff'>\r\n\r\n$jscode\r\n\r\n</xmp>";
	$showhtml .= "预览:<iframe name='testfrm' frameborder='0' src='ad_edit.php?aid={$aid}&dopost=testjs' id='testfrm' width='100%' height='200'></iframe>";
	$wintitle = "广告管理-获取JS";
	$wecome_info = "<a href='ad_main.php'><u>广告管理</u></a>::获取JS";
	$win = new OxWindow();
	$win->Init();
	$win->AddTitle("以下为选定广告的JS调用代码:");
	$winform = $win->GetWindow("hand",$showhtml);
	$win->Display();
	exit();
}
else if($dopost=='testjs')
{
	echo "<script src='{$cfg_phpurl}/ad_js.php?aid=$aid' language='javascript'></script>";
	exit();
}
else if($dopost=='saveedit')
{
	$starttime = GetMkTime($starttime);
	$endtime = GetMkTime($endtime);
	$query = "Update `#@__myad`
	 set
	 typeid='$typeid',
	 adname='$adname',
	 timeset='$timeset',
	 starttime='$starttime',
	 endtime='$endtime',
	 normbody='$normbody',
	 expbody='$expbody'
	 where aid='$aid'
	 ";
	$dsql->ExecuteNoneQuery($query);
	ShowMsg("成功更改一则广告代码!",$ENV_GOBACK_URL);
	exit();
}
$row = $dsql->GetOne("Select * From `#@__myad` where aid='$aid'");
include DedeInclude('templets/ad_edit.htm');

?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?