ChangeInfo.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require '../'.LoadLang("pub/fun.php");
  7. require("../../data/dbcache/class.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. $editor=1;
  11. //验证用户
  12. $lur=is_login();
  13. $logininid=$lur['userid'];
  14. $loginin=$lur['username'];
  15. $loginrnd=$lur['rnd'];
  16. $loginlevel=$lur['groupid'];
  17. $loginadminstyleid=$lur['adminstyleid'];
  18. //ehash
  19. $ecms_hashur=hReturnEcmsHashStrAll();
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $form=RepPostVar($_GET['form']);
  22. $field=RepPostVar($_GET['field']);
  23. $keyboard=RepPostVar($_GET['keyboard']);
  24. //数据表
  25. $tbs='';
  26. $tsql=$empire->query("select tid,tbname,tname from {$dbtbpre}enewstable where intb=0 order by tid");
  27. while($tr=$empire->fetch($tsql))
  28. {
  29. $tbs.="<option value='".$tr[tbname]."'>".$tr[tname]."</option>";
  30. }
  31. //事件
  32. $word='选择信息';
  33. $word_button='导入选中信息';
  34. if($enews=='LoadInSpInfo')
  35. {
  36. $word='选择信息';
  37. $word_button='导入选中信息';
  38. }
  39. ?>
  40. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  41. <html>
  42. <head>
  43. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  44. <title><?=$word?></title>
  45. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  46. <script>
  47. function UpdateChangeInfoid(obj){
  48. var isok;
  49. isok=confirm('确认要操作?');
  50. if(isok==false)
  51. {
  52. return '';
  53. }
  54. opener.ChangeInfoDoAction(obj.truetbname.value,obj.trueinfoid.value);
  55. window.close();
  56. }
  57. function CheckSearchForm(obj){
  58. if(obj.keyboard.value=='')
  59. {
  60. alert('搜索关键字不能为空');
  61. obj.keyboard.focus();
  62. return false;
  63. }
  64. return true;
  65. }
  66. </script>
  67. </head>
  68. <body>
  69. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  70. <tr>
  71. <td height="25" class="header"><?=$word?></td>
  72. </tr>
  73. <tr>
  74. <td width="100%" height="25" valign="top" bgcolor="#FFFFFF">
  75. <table width="100%" border="0" cellspacing="1" cellpadding="3" class="tableborder">
  76. <form action="ChangeInfoShow.php" method="POST" name="searchinfoform" target="searchinfopage" id="searchinfoform" onsubmit="return CheckSearchForm(document.searchinfoform);">
  77. <?=$ecms_hashur['eform']?>
  78. <tr>
  79. <td height="25">查询:
  80. <select name="tbname" id="tbname">
  81. <?=$tbs?>
  82. </select>
  83. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>">
  84. <select name="show" id="show">
  85. <option value="1" selected>标题</option>
  86. <option value="2">关键字</option>
  87. <option value="3">ID</option>
  88. </select>
  89. <span id="listfileclassnav"></span> <input type="submit" name="Submit" value="搜索">
  90. <input name="sear" type="hidden" id="sear" value="1">
  91. <input name="enews" type="hidden" id="enews" value="<?=$enews?>">
  92. <font color="#666666">(搜索多个关键字可用空格隔开)</font></td>
  93. </tr>
  94. <tr>
  95. <td height="405" valign="top" bgcolor="#FFFFFF"> <IFRAME frameBorder="0" id="searchinfopage" name="searchinfopage" scrolling="yes" src="ChangeInfoShow.php<?=$ecms_hashur['whehref']?>" style="HEIGHT:100%;VISIBILITY:inherit;WIDTH:100%;Z-INDEX:1"></IFRAME></td>
  96. </tr>
  97. </form>
  98. </table></td>
  99. </tr>
  100. </table>
  101. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  102. <form name="truechangeinfoform" id="truechangeinfoform" method="post" action="">
  103. <tr>
  104. <td height="25"><input type="button" name="Submit2" value="<?=$word_button?>" onclick="UpdateChangeInfoid(document.truechangeinfoform);">
  105. (数量:<span id="truechangeinfonum"><strong>0</strong></span>)
  106. <input name="trueinfoid" type="hidden" id="trueinfoid">
  107. <input name="truetbname" type="hidden" id="truetbname"></td>
  108. </tr>
  109. </form>
  110. </table>
  111. <IFRAME frameBorder="0" id="showclassnav" name="showclassnav" scrolling="no" src="../ShowClassNav.php?ecms=5<?=$ecms_hashur['ehref']?>" style="HEIGHT:0;VISIBILITY:inherit;WIDTH:0;Z-INDEX:1"></IFRAME>
  112. </body>
  113. </html>
  114. <?php
  115. db_close();
  116. $empire=null;
  117. ?>