$kv['classname'], 'cid' => $kv['classid'], 'pid' => $kv['bclassid']);
}
}
if (empty($_POST)) {
//这里刷新列表
echo "';
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 .= "";
foreach ($ar as $kk => $vv) {
$pp = $vv['pid'];
if ($pp == $cid) {
$ids .= maketree($ar, $cid, $pre . " ");
break;
}
}
}
}
return $ids;
}
?>