CopyTable.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"table");
  20. $enews=RepPostStr($_GET['enews'],1);
  21. $url="<a href=ListTable.php".$ecms_hashur['whehref'].">管理数据表</a>&nbsp;>&nbsp;复制数据表";
  22. $tid=(int)$_GET['tid'];
  23. $r=$empire->fetch1("select tid,tbname,tname,tsay,yhid from {$dbtbpre}enewstable where tid=$tid");
  24. if(!$r['tbname'])
  25. {
  26. printerror("ErrorUrl","");
  27. }
  28. //优化方案
  29. $yh_options='';
  30. $yhsql=$empire->query("select id,yhname from {$dbtbpre}enewsyh order by id");
  31. while($yhr=$empire->fetch($yhsql))
  32. {
  33. $select='';
  34. if($r[yhid]==$yhr[id])
  35. {
  36. $select=' selected';
  37. }
  38. $yh_options.="<option value='".$yhr[id]."'".$select.">".$yhr[yhname]."</option>";
  39. }
  40. db_close();
  41. $empire=null;
  42. ?>
  43. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  44. <html>
  45. <head>
  46. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  47. <title>复制数据表</title>
  48. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  49. </head>
  50. <body>
  51. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  52. <tr>
  53. <td>位置:
  54. <?=$url?>
  55. </td>
  56. </tr>
  57. </table>
  58. <form name="form1" method="post" action="../ecmsmod.php">
  59. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  60. <?=$ecms_hashur['form']?>
  61. <tr>
  62. <td height="25" colspan="2" class="header">复制数据表</td>
  63. </tr>
  64. <tr>
  65. <td height="25" bgcolor="#F8F8F8">源数据表名</td>
  66. <td height="25" bgcolor="#FFFFFF"><font color=red><b><? echo $dbtbpre."ecms_".$r['tbname'];?></b></font></td>
  67. </tr>
  68. <tr>
  69. <td width="23%" height="25" bgcolor="#F8F8F8">新数据表名</td>
  70. <td width="77%" height="25" bgcolor="#FFFFFF"><strong>
  71. <?=$dbtbpre?>
  72. ecms_</strong> <input name="newtbname" type="text" id="newtbname" value="<?=$r[tbname]?>1">
  73. *<font color="#666666">(如:news,只能由字母、数字线组成)</font></td>
  74. </tr>
  75. <tr>
  76. <td height="25" bgcolor="#F8F8F8">新数据表标识</td>
  77. <td height="25" bgcolor="#FFFFFF"> <input name="tname" type="text" id="tname" value="<?=$r[tname]?>1" size="38">
  78. *<font color="#666666">(如:新闻数据表)</font></td>
  79. </tr>
  80. <tr>
  81. <td height="25" bgcolor="#F8F8F8">使用优化方案</td>
  82. <td height="25" bgcolor="#FFFFFF"><select name="yhid" id="yhid">
  83. <option name="0">不使用</option>
  84. <?=$yh_options?>
  85. </select> <input type="button" name="Submit63" value="管理优化方案" onclick="window.open('../db/ListYh.php<?=$ecms_hashur['whehref']?>');"></td>
  86. </tr>
  87. <tr>
  88. <td height="25" valign="top" bgcolor="#F8F8F8">新备注</td>
  89. <td height="25" bgcolor="#FFFFFF"> <textarea name="tsay" cols="70" rows="8" id="tsay"><?=$r[tsay]?></textarea></td>
  90. </tr>
  91. <tr>
  92. <td height="25" bgcolor="#F8F8F8">&nbsp;</td>
  93. <td height="25" bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="提交">
  94. <input type="reset" name="Submit2" value="重置"> <input name="tid" type="hidden" id="tid" value="<?=$tid?>">
  95. <input name="enews" type="hidden" id="enews" value="CopyNewTable"> </td>
  96. </tr>
  97. </table>
  98. </form>
  99. </body>
  100. </html>