1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- /********密码验证***********/
- $password = 'qq396919548'; //这个密码是登陆验证用的.您需要在模块里设置和这里一样的密码....注意一定需要修改.
- if ($password != $_GET['pw']) exit('验证密码错误'); //安全检测,密码不符则退出
- /****以下代码非专业人员不建议修改***************/
- define('EmpireCMSAdmin', '1');
- require("../class/connect.php");
- require("../class/db_sql.php");
- require("../class/huoche.php");
- require LoadLang("pub/fun.php");
- require("../class/delpath.php");
- require("../class/copypath.php");
- require("../class/t_functions.php");
- require("../data/dbcache/class.php");
- require("../data/dbcache/MemberLevel.php");
- //获取分类列表
- foreach ($class_r as $kv) {
- if ($kv['modid'] == '5') {
- $cates[] = array('cname' => $kv['classname'], 'cid' => $kv['classid'], 'pid' => $kv['bclassid']);
- }
- }
- if (empty($_POST)) {
- //这里刷新列表
- echo "<select name='list'>";
- echo maketree($cates, 0, '');
- echo '</select>';
- exit();
- }
- $link = db_connect();
- $empire = new mysqlquery();
- //验证用户
- $loginin = $_POST['username'];
- $lur = $empire->fetch1("select * from {$dbtbpre}enewsuser where `username`='$loginin'");
- if (!$lur) exit('不存在的用户名' . $loginin);
- $logininid = $lur['userid'];
- $loginrnd = $lur['rnd'];
- $loginlevel = $lur['groupid'];
- $loginadminstyleid = $lur['adminstyleid'];
- $incftp = 0;
- if ($public_r['phpmode']) {
- include("../class/ftp.php");
- $incftp = 1;
- }
- require("../class/hinfofun.php");
- $navtheid = (int)$_POST['filepass'];
- $newstime = $_POST['newstime'];
- $cid = $_POST['cid'];
- $classid = $_POST['classid'];
- $title = $_POST['title'];
- $newstime = empty($newstime) ? time() : to_time($newstime);
- $cr = $empire->fetch1("select classid from www_jianzhanzj_com_enewsclass where classname='$classid' limit 1");
- if (!$cr[classid]) {
- exit('分类不存在');
- } else {
- $_POST['classid'] = $cr[classid];
- }
- $r = $empire->fetch1("select id from www_jianzhanzj_com_ecms_movie where cid='$cid' or title='$title' limit 1");
- if ($r[id]) {
- $empire->query("update www_jianzhanzj_com_ecms_movie set title='$_POST[title]',xhyid='$_POST[xhyid]',live='$_POST[live]',typename='$_POST[typename]',livename='$_POST[livename]',zd='$_POST[zd]',kd='$_POST[kd]',newstime='$newstime' where id='$r[id]' limit 1");
- exit('增加信息成功');
- } else {
- AddNews($_POST, $logininid, $loginin);
- }
- db_close();
- $empire = null;
- /***生成目录的一个遍历算法***/
- function maketree($ar, $id, $pre)
- {
- $ids = '';
- foreach ($ar as $k => $v) {
- $pid = $v['pid'];
- $cname = $v['cname'];
- $cid = $v['cid'];
- if ($pid == $id) {
- $ids .= "<option value='$cid'>{$pre}{$cname}</option>";
- foreach ($ar as $kk => $vv) {
- $pp = $vv['pid'];
- if ($pp == $cid) {
- $ids .= maketree($ar, $cid, $pre . " ");
- break;
- }
- }
- }
- }
- return $ids;
- }
- ?>
|