ListSql.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"execsql");
  21. $search=$ecms_hashur['ehref'];
  22. $page=(int)$_GET['page'];
  23. $page=RepPIntvar($page);
  24. $start=0;
  25. $line=16;//每页显示条数
  26. $page_line=25;//每页显示链接数
  27. $offset=$page*$line;//总偏移量
  28. $query="select id,sqlname from {$dbtbpre}enewssql";
  29. $totalquery="select count(*) as total from {$dbtbpre}enewssql";
  30. $num=$empire->gettotal($totalquery);//取得总条数
  31. $query=$query." order by id desc limit $offset,$line";
  32. $sql=$empire->query($query);
  33. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  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. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  40. <title>管理SQL语句</title>
  41. </head>
  42. <body>
  43. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  44. <tr>
  45. <td height="25">位置:<a href="ListSql.php<?=$ecms_hashur['whehref']?>">管理SQL语句</a></td>
  46. <td width="50%"><div align="right" class="emenubutton">
  47. <input type="button" name="Submit5" value="增加SQL语句" onclick="self.location.href='AddSql.php?enews=AddSql<?=$ecms_hashur['ehref']?>';">&nbsp;&nbsp;
  48. <input type="button" name="Submit4" value="执行SQL语句" onclick="self.location.href='DoSql.php<?=$ecms_hashur['whehref']?>';">
  49. </div></td>
  50. </tr>
  51. </table>
  52. <br>
  53. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  54. <tr class="header">
  55. <td width="10%" height="25"> <div align="center">ID</div></td>
  56. <td width="62%" height="25"> <div align="center">SQL名称</div></td>
  57. <td width="28%" height="25"> <div align="center">操作</div></td>
  58. </tr>
  59. <?php
  60. while($r=$empire->fetch($sql))
  61. {
  62. ?>
  63. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  64. <td height="25"> <div align="center">
  65. <?=$r['id']?>
  66. </div></td>
  67. <td height="25"> <div align="center">
  68. <?=$r['sqlname']?>
  69. </div></td>
  70. <td height="25"> <div align="center">[<a href="DoSql.php?enews=ExecSql&id=<?=$r[id]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要执行SQL?');">执行</a>] [<a href="AddSql.php?enews=EditSql&id=<?=$r[id]?><?=$ecms_hashur['ehref']?>">修改</a>]&nbsp;[<a href="DoSql.php?enews=DelSql&id=<?=$r[id]?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  71. </tr>
  72. <?
  73. }
  74. ?>
  75. <tr bgcolor="#FFFFFF">
  76. <td height="25" colspan="3">&nbsp;&nbsp;&nbsp;
  77. <?=$returnpage?>
  78. </td>
  79. </tr>
  80. </table>
  81. </body>
  82. </html>
  83. <?php
  84. db_close();
  85. $empire=null;
  86. ?>