ChangeDb.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("class/functions.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  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,"dbdata");
  20. //默认数据库
  21. if(!empty($public_r['ebakthisdb'])){
  22. echo"正转到默认的数据库,请稍等......<script>self.location.href='ChangeTable.php?mydbname=".$ecms_config['db']['dbname'].$ecms_hashur['ehref']."'</script>";
  23. exit();
  24. }
  25. $sql=$empire->query("SHOW DATABASES");
  26. ?>
  27. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  28. <html>
  29. <head>
  30. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  31. <title>选择数据库</title>
  32. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  33. <script>
  34. function DoDrop(dbname)
  35. {var ok;
  36. ok=confirm("确认要删除此数据库?");
  37. if(ok)
  38. {
  39. self.location.href='phome.php?<?=$ecms_hashur['href']?>&phome=DropDb&mydbname='+dbname;
  40. }
  41. }
  42. </script>
  43. </head>
  44. <body>
  45. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  46. <tr>
  47. <td>位置:备份数据 -&gt; <a href="ChangeDb.php<?=$ecms_hashur['whehref']?>">选择数据库</a></td>
  48. </tr>
  49. <tr>
  50. <td height="25"><div align="center">备份步骤:<font color="#FF0000">选择数据库</font>
  51. -&gt; 选择要备份的表 -&gt; 开始备份 -&gt; 完成</div></td>
  52. </tr>
  53. </table>
  54. <br>
  55. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  56. <tr class="header">
  57. <td width="60%" height="25">
  58. <div align="center">数据库名</div></td>
  59. <td width="40%" height="25">
  60. <div align="center">备份</div></td>
  61. </tr>
  62. <?
  63. while($r=$empire->fetch($sql))
  64. {
  65. if($r[0]==$ecms_config['db']['dbname'])
  66. {
  67. $bgcolor="#DBEAF5";
  68. }
  69. else
  70. {
  71. $bgcolor="#FFFFFF";
  72. }
  73. ?>
  74. <tr bgcolor="<?=$bgcolor?>">
  75. <td height="25">
  76. <div align="center"><?=$r[0]?></div></td>
  77. <td height="25">
  78. <div align="center">
  79. <input type="button" name="Submit" value="备份数据" onclick="self.location.href='ChangeTable.php?mydbname=<?=$r[0]?><?=$ecms_hashur['ehref']?>';">
  80. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" name="Submit3" value="删除数据库" onclick="javascript:DoDrop('<?=$r[0]?>')">
  81. </div></td>
  82. </tr>
  83. <?
  84. }
  85. db_close();
  86. $empire=null;
  87. ?>
  88. <tr bgcolor="#FFFFFF">
  89. <td height="25" colspan="2"><form name="form1" method="post" action="phome.php">
  90. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  91. <?=$ecms_hashur['form']?>
  92. <tr class="header">
  93. <td height="25">建立数据库
  94. <input name="phome" type="hidden" id="phome" value="CreateDb">
  95. </td>
  96. </tr>
  97. <tr>
  98. <td bgcolor="#FFFFFF">数据库名:
  99. <input name="mydbname" type="text" id="mydbname">
  100. <select name="mydbchar" id="mydbchar">
  101. <option value="">默认编码</option>
  102. <option value="gbk">gbk</option>
  103. <option value="utf8">utf8</option>
  104. <option value="gb2312">gb2312</option>
  105. <option value="big5">big5</option>
  106. <option value="latin1">latin1</option>
  107. </select>
  108. <input type="submit" name="Submit2" value="建立">
  109. </td>
  110. </tr>
  111. </table>
  112. </form></td>
  113. </tr>
  114. </table>
  115. </body>
  116. </html>