AddMoreCard.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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,"card");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $url="<a href=ListCard.php".$ecms_hashur['whehref'].">管理点卡</a> &gt; <a href=AddMoreCard.php".$ecms_hashur['whehref'].">批量增加点卡</a>";
  22. //----------会员组
  23. $sql=$empire->query("select groupid,groupname from {$dbtbpre}enewsmembergroup order by level");
  24. while($level_r=$empire->fetch($sql))
  25. {
  26. $group.="<option value=".$level_r[groupid].">".$level_r[groupname]."</option>";
  27. }
  28. ?>
  29. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  30. <html>
  31. <head>
  32. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  33. <title>批量增加点卡</title>
  34. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  35. <script type="text/javascript" src="../ecmseditor/js/jstime/WdatePicker.js"></script>
  36. </head>
  37. <body>
  38. <table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1">
  39. <tr>
  40. <td>位置:<?=$url?></td>
  41. </tr>
  42. </table>
  43. <form name="form1" method="post" action="ListCard.php">
  44. <table width="60%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  45. <?=$ecms_hashur['form']?>
  46. <tr class="header">
  47. <td height="25" colspan="2"><div align="center">批量增加点卡
  48. <input name="enews" type="hidden" id="enews" value="AddMoreCard">
  49. </div></td>
  50. </tr>
  51. <tr bgcolor="#FFFFFF">
  52. <td width="36%" height="25">批量生成点卡数量:</td>
  53. <td width="64%" height="25"><input name="donum" type="text" id="donum" value="10" size="6">
  54. 个</td>
  55. </tr>
  56. <tr bgcolor="#FFFFFF">
  57. <td height="25">点卡帐号位数:</td>
  58. <td height="25"><input name="cardnum" type="text" id="cardnum" value="8" size="6">
  59. 位 </td>
  60. </tr>
  61. <tr bgcolor="#FFFFFF">
  62. <td height="25">点卡密码位数:</td>
  63. <td height="25"><input name="passnum" type="text" id="passnum" value="6" size="6">
  64. 位 </td>
  65. </tr>
  66. <tr bgcolor="#FFFFFF">
  67. <td height="25">点卡金额:</td>
  68. <td height="25"><input name="money" type="text" id="money" value="10" size="6">
  69. 元</td>
  70. </tr>
  71. <tr bgcolor="#FFFFFF">
  72. <td height="25">点数:</td>
  73. <td height="25"><input name="cardfen" type="text" id="cardfen" value="0" size="6">
  74. 点</td>
  75. </tr>
  76. <tr bgcolor="#FFFFFF">
  77. <td rowspan="3">充值有效期:</td>
  78. <td height="25"><input name="carddate" type="text" id="carddate" value="0" size="6">
  79. 天</td>
  80. </tr>
  81. <tr bgcolor="#FFFFFF">
  82. <td height="25">充值设置转向会员组:
  83. <select name="cdgroupid" id="select2">
  84. <option value=0>不设置</option>
  85. <?=$group?>
  86. </select></td>
  87. </tr>
  88. <tr bgcolor="#FFFFFF">
  89. <td height="25">到期后转向的会员组:
  90. <select name="cdzgroupid" id="cdzgroupid">
  91. <option value=0>不设置</option>
  92. <?=$group?>
  93. </select></td>
  94. </tr>
  95. <tr bgcolor="#FFFFFF">
  96. <td height="25">到期时间:</td>
  97. <td height="25"><input name="endtime" type="text" id="endtime" value="0000-00-00" size="20" class="Wdate" onClick="WdatePicker({skin:'default',dateFmt:'yyyy-MM-dd'})">
  98. (0000-00-00为不限制)</td>
  99. </tr>
  100. <tr bgcolor="#FFFFFF">
  101. <td height="25" colspan="2"><div align="center">
  102. <input type="submit" name="Submit" value="提交">
  103. &nbsp;
  104. <input type="reset" name="Submit2" value="重置">
  105. </div></td>
  106. </tr>
  107. </table>
  108. </form>
  109. </body>
  110. </html>
  111. <?
  112. db_close();
  113. $empire=null;
  114. ?>