ListDataTable.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. $tid=(int)$_GET['tid'];
  21. $tbname=RepPostVar($_GET['tbname']);
  22. if(!$tid||!$tbname)
  23. {
  24. printerror("ErrorUrl","history.go(-1)");
  25. }
  26. $r=$empire->fetch1("select tid,datatbs,deftb from {$dbtbpre}enewstable where tid='$tid'");
  27. if(!$r[tid])
  28. {
  29. printerror("ErrorUrl","history.go(-1)");
  30. }
  31. $tr=explode(',',$r[datatbs]);
  32. $url="数据表:[".$dbtbpre."ecms_".$tbname."]&nbsp;>&nbsp;<a href=ListDataTable.php?tid=$tid&tbname=$tbname".$ecms_hashur['ehref'].">管理副表分表</a>";
  33. $datatbname=$dbtbpre.'ecms_'.$tbname.'_data_';
  34. ?>
  35. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  36. <html>
  37. <head>
  38. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  39. <title>管理副表分表</title>
  40. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  41. </head>
  42. <body>
  43. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  44. <tr>
  45. <td>位置:<?=$url?></td>
  46. </tr>
  47. </table>
  48. <form name="adddatatableform" method="post" action="../ecmsmod.php" onsubmit="return confirm('确认要增加?');">
  49. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  50. <?=$ecms_hashur['form']?>
  51. <tr class="header">
  52. <td>增加副表分表
  53. <input name="enews" type="hidden" id="enews" value="AddDataTable">
  54. <input name="tid" type="hidden" id="tid" value="<?=$tid?>"> <input name="tbname" type="hidden" id="tbname" value="<?=$tbname?>"></td>
  55. </tr>
  56. <tr>
  57. <td bgcolor="#FFFFFF">
  58. <?=$datatbname?>
  59. <input name="datatb" type="text" id="datatb" value="0" size="6">
  60. <input type="submit" name="Submit" value="增加">
  61. <font color="#666666">(表名要用数字)</font></td>
  62. </tr>
  63. </table>
  64. </form>
  65. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  66. <tr class="header">
  67. <td width="38%" height="25"><div align="center">表名</div></td>
  68. <td width="33%" height="25"><div align="center">记录数</div></td>
  69. <td width="29%" height="25"><div align="center">操作</div></td>
  70. </tr>
  71. <?php
  72. $count=count($tr)-1;
  73. $maxtb=0;
  74. for($i=1;$i<$count;$i++)
  75. {
  76. $total_r=$empire->fetch1("SHOW TABLE STATUS LIKE '".$datatbname.$tr[$i]."';");
  77. $bgcolor="#ffffff";
  78. $movejs=' onmouseout="this.style.backgroundColor=\'#ffffff\'" onmouseover="this.style.backgroundColor=\'#C3EFFF\'"';
  79. if($tr[$i]==$r['deftb'])
  80. {
  81. $bgcolor="#DBEAF5";
  82. $movejs='';
  83. }
  84. if($tr[$i]>$maxtb)
  85. {
  86. $maxtb=$tr[$i];
  87. }
  88. $dostr=$tr[$i]==1?"":"&nbsp;&nbsp;&nbsp;[<a href=\"../ecmsmod.php?tid=$tid&tbname=$tbname&enews=DelDataTable&datatb=".$tr[$i].$ecms_hashur['href']."\" onclick=\"return confirm('确认要删除,删除会删除表里的所有信息?');\">删除</a>]";
  89. ?>
  90. <tr bgcolor="<?=$bgcolor?>"<?=$movejs?>>
  91. <td height="25">
  92. <?=$datatbname?><b><?=$tr[$i]?></b>
  93. </td>
  94. <td height="25"><div align="center">
  95. <?=$total_r['Rows']?>
  96. </div></td>
  97. <td height="25"><div align="center">[<a href="../ecmsmod.php?tid=<?=$tid?>&tbname=<?=$tbname?>&enews=DefDataTable&datatb=<?=$tr[$i]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要将这个表设为当前存放表?');">设为当前存放表</a>]<?=$dostr?></div></td>
  98. </tr>
  99. <?php
  100. }
  101. ?>
  102. </table>
  103. <script>
  104. document.adddatatableform.datatb.value="<?=$maxtb+1?>";
  105. </script>
  106. </body>
  107. </html>
  108. <?php
  109. db_close();
  110. $empire=null;
  111. ?>