12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /**
- * 友情链接类型
- *
- * @version $Id: friendlink_type.php 1 8:48 2010年7月13日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");
- if(empty($dopost)) $dopost = '';
- //保存更改
- if($dopost=="save")
- {
- $startID = 1;
- $endID = $idend;
- for(;$startID<=$endID;$startID++)
- {
- $query = '';
- $tid = ${'ID_'.$startID};
- $pname = ${'pname_'.$startID};
- if(isset(${'check_'.$startID}))
- {
- if($pname!='')
- {
- $query = "UPDATE `#@__myppttype` SET typename='$pname' WHERE id='$tid' ";
- $dsql->ExecuteNoneQuery($query);
- }
- }
- else
- {
- $query = "DELETE FROM `#@__myppttype` WHERE id='$tid' ";
- $dsql->ExecuteNoneQuery($query);
- }
- }
- //增加新记录
- if(isset($check_new) && $pname_new!='')
- {
- $query = "INSERT INTO `#@__myppttype`(typename) VALUES('{$pname_new}');";
- $dsql->ExecuteNoneQuery($query);
- }
- header("Content-Type: text/html; charset={$cfg_soft_lang}");
- ShowMsg("成功更新幻灯片分类列表!", 'ppttype_main.php');
- exit;
- }
- include DedeInclude('templets/ppttype_main.htm');
|