LinkClass.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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,"link");
  20. $sql=$empire->query("select classid,classname from {$dbtbpre}enewslinkclass order by classid desc");
  21. ?>
  22. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  23. <html>
  24. <head>
  25. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  26. <title></title>
  27. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  28. </head>
  29. <body>
  30. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  31. <tr>
  32. <td>位置:<a href="ListLink.php<?=$ecms_hashur['whehref']?>">管理友情链接</a> &gt; <a href="LinkClass.php<?=$ecms_hashur['whehref']?>">管理友情链接类别</a></td>
  33. </tr>
  34. </table>
  35. <form name="form1" method="post" action="../ecmscom.php">
  36. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  37. <?=$ecms_hashur['form']?>
  38. <tr class="header">
  39. <td height="25">增加友情链接类别:
  40. <input type=hidden name=enews value=AddLinkClass>
  41. <input name=doing type=hidden value=link> </td>
  42. </tr>
  43. <tr>
  44. <td height="25" bgcolor="#FFFFFF"> 类别名称:
  45. <input name="classname" type="text" id="classname">
  46. <input type="submit" name="Submit" value="增加">
  47. <input type="reset" name="Submit2" value="重置"></td>
  48. </tr>
  49. </table>
  50. </form>
  51. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  52. <tr class="header">
  53. <td width="10%"><div align="center">ID</div></td>
  54. <td width="59%" height="25"><div align="center">类别名称</div></td>
  55. <td width="31%" height="25"><div align="center">操作</div></td>
  56. </tr>
  57. <?
  58. while($r=$empire->fetch($sql))
  59. {
  60. ?>
  61. <form name=form2 method=post action=../ecmscom.php>
  62. <?=$ecms_hashur['form']?>
  63. <input type=hidden name=enews value=EditLinkClass>
  64. <input name=doing type=hidden value=link>
  65. <input type=hidden name=classid value=<?=$r[classid]?>>
  66. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  67. <td><div align="center"><?=$r[classid]?></div></td>
  68. <td height="25"> <div align="center">
  69. <input name="classname" type="text" id="classname" value="<?=$r[classname]?>">
  70. </div></td>
  71. <td height="25"><div align="center">
  72. <input type="submit" name="Submit3" value="修改">
  73. &nbsp;
  74. <input type="button" name="Submit4" value="删除" onclick="self.location.href='../ecmscom.php?enews=DelLinkClass&classid=<?=$r[classid]?>&doing=link<?=$ecms_hashur['href']?>';">
  75. </div></td>
  76. </tr>
  77. </form>
  78. <?
  79. }
  80. db_close();
  81. $empire=null;
  82. ?>
  83. </table>
  84. </body>
  85. </html>