zbcj.php 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. /********密码验证***********/
  3. $password = 'qq396919548'; //这个密码是登陆验证用的.您需要在模块里设置和这里一样的密码....注意一定需要修改.
  4. if ($password != $_GET['pw']) exit('验证密码错误'); //安全检测,密码不符则退出
  5. /****以下代码非专业人员不建议修改***************/
  6. define('EmpireCMSAdmin', '1');
  7. require("../class/connect.php");
  8. require("../class/db_sql.php");
  9. require("../class/huoche.php");
  10. require LoadLang("pub/fun.php");
  11. require("../class/delpath.php");
  12. require("../class/copypath.php");
  13. require("../class/t_functions.php");
  14. require("../data/dbcache/class.php");
  15. require("../data/dbcache/MemberLevel.php");
  16. //获取分类列表
  17. foreach ($class_r as $kv) {
  18. if ($kv['modid'] == '5') {
  19. $cates[] = array('cname' => $kv['classname'], 'cid' => $kv['classid'], 'pid' => $kv['bclassid']);
  20. }
  21. }
  22. if (empty($_POST)) {
  23. //这里刷新列表
  24. echo "<select name='list'>";
  25. echo maketree($cates, 0, '');
  26. echo '</select>';
  27. exit();
  28. }
  29. $link = db_connect();
  30. $empire = new mysqlquery();
  31. //验证用户
  32. $loginin = $_POST['username'];
  33. $lur = $empire->fetch1("select * from {$dbtbpre}enewsuser where `username`='$loginin'");
  34. if (!$lur) exit('不存在的用户名' . $loginin);
  35. $logininid = $lur['userid'];
  36. $loginrnd = $lur['rnd'];
  37. $loginlevel = $lur['groupid'];
  38. $loginadminstyleid = $lur['adminstyleid'];
  39. $incftp = 0;
  40. if ($public_r['phpmode']) {
  41. include("../class/ftp.php");
  42. $incftp = 1;
  43. }
  44. require("../class/hinfofun.php");
  45. $navtheid = (int)$_POST['filepass'];
  46. $newstime = $_POST['newstime'];
  47. $cid = $_POST['cid'];
  48. $classid = $_POST['classid'];
  49. $title = $_POST['title'];
  50. $newstime = empty($newstime) ? time() : to_time($newstime);
  51. $cr = $empire->fetch1("select classid from www_jianzhanzj_com_enewsclass where classname='$classid' limit 1");
  52. if (!$cr[classid]) {
  53. exit('分类不存在');
  54. } else {
  55. $_POST['classid'] = $cr[classid];
  56. }
  57. $r = $empire->fetch1("select id from www_jianzhanzj_com_ecms_movie where cid='$cid' or title='$title' limit 1");
  58. if ($r[id]) {
  59. $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");
  60. exit('增加信息成功');
  61. } else {
  62. AddNews($_POST, $logininid, $loginin);
  63. }
  64. db_close();
  65. $empire = null;
  66. /***生成目录的一个遍历算法***/
  67. function maketree($ar, $id, $pre)
  68. {
  69. $ids = '';
  70. foreach ($ar as $k => $v) {
  71. $pid = $v['pid'];
  72. $cname = $v['cname'];
  73. $cid = $v['cid'];
  74. if ($pid == $id) {
  75. $ids .= "<option value='$cid'>{$pre}{$cname}</option>";
  76. foreach ($ar as $kk => $vv) {
  77. $pp = $vv['pid'];
  78. if ($pp == $cid) {
  79. $ids .= maketree($ar, $cid, $pre . "&nbsp;&nbsp;");
  80. break;
  81. }
  82. }
  83. }
  84. }
  85. return $ids;
  86. }
  87. ?>