www.gusucode.com > (自适应手机版)HTML5响应式家居床垫类网站源码 H5家具定制类网站织梦模板(demo422)源码程序 > (自适应手机版)HTML5响应式家居床垫类网站源码 H5家具定制类网站织梦模板(demo422)源码程序/www6/dede/mynews_edit.php
<?php /** * 站内新闻管理 * * @version $Id: mynews_edit.php 1 15:28 2010年7月20日Z tianya $ * @package DedeCMS.Administrator * @copyright Copyright (c) 2007 - 2010, DesDev, Inc. * @license http://help.dedecms.com/usersguide/license.html * @link http://www.dedecms.com */ require_once(dirname(__FILE__)."/config.php"); CheckPurview('plus_站内新闻发布'); if(empty($dopost)) $dopost = ""; $aid = preg_replace("#[^0-9]#", "", $aid); if($dopost=="del") { $dsql->ExecuteNoneQuery("DELETE FROM #@__mynews WHERE aid='$aid';"); ShowMsg("成功删除一条站内新闻!","mynews_main.php"); exit(); } else if($dopost=="editsave") { $inquery = "UPDATE #@__mynews SET title='$title',typeid='$typeid',writer='$writer',senddate='".GetMKTime($sdate)."',body='$body' WHERE aid='$aid';"; $dsql->ExecuteNoneQuery($inquery); ShowMsg("成功更改一条站内新闻!","mynews_main.php"); exit(); } $myNews = $dsql->GetOne("SELECT #@__mynews.*,#@__arctype.typename FROM #@__mynews LEFT JOIN #@__arctype ON #@__arctype.id=#@__mynews.typeid WHERE #@__mynews.aid='$aid';"); include DedeInclude('templets/mynews_edit.htm');