AddInGroup.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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,"ingroup");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $postword='增加';
  22. $url="<a href='ListInGroup.php".$ecms_hashur['whehref']."'>管理会员内部组</a>&nbsp;->&nbsp;增加会员内部组";
  23. if($enews=="EditInGroup")
  24. {
  25. $gid=(int)$_GET['gid'];
  26. $postword='修改';
  27. $r=$empire->fetch1("select * from {$dbtbpre}enewsingroup where gid='$gid'");
  28. $url="<a href='ListInGroup.php".$ecms_hashur['whehref']."'>管理会员内部组</a>&nbsp;->&nbsp;修改会员内部组:<b>".$r[gname]."</b>";
  29. }
  30. db_close();
  31. $empire=null;
  32. ?>
  33. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  34. <html>
  35. <head>
  36. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  37. <title>会员内部组</title>
  38. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  39. </head>
  40. <body>
  41. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="0">
  42. <tr>
  43. <td height="25">位置:<?=$url?></td>
  44. </tr>
  45. </table>
  46. <form name="form1" method="post" action="ListInGroup.php">
  47. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  48. <?=$ecms_hashur['form']?>
  49. <tr class="header">
  50. <td width="21%" height="25"><?=$postword?>会员内部组</td>
  51. <td width="79%" height="25"><input name="enews" type="hidden" id="enews" value="<?=$enews?>">
  52. <input name="gid" type="hidden" id="gid" value="<?=$gid?>"></td>
  53. </tr>
  54. <tr bgcolor="#FFFFFF">
  55. <td height="25">组名称</td>
  56. <td height="25"> <input name="gname" type="text" id="gname" value="<?=$r[gname]?>" size="30"> </td>
  57. </tr>
  58. <tr bgcolor="#FFFFFF">
  59. <td height="25">显示排序</td>
  60. <td height="25"> <input name="myorder" type="text" id="myorder" value="<?=$r[myorder]?>" size="30"> <font color="#666666">(值越小越前面)</font></td>
  61. </tr>
  62. <tr bgcolor="#FFFFFF">
  63. <td height="25">&nbsp;</td>
  64. <td height="25"> <input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  65. </tr>
  66. </table>
  67. </form>
  68. </body>
  69. </html>