GetFen.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require("../../member/class/user.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,"card");
  21. $enews=$_POST['enews'];
  22. if($enews)
  23. {
  24. hCheckEcmsRHash();
  25. @set_time_limit(0);
  26. }
  27. if($enews=="GetFen")
  28. {
  29. include('../../member/class/member_adminfun.php');
  30. $cardfen=$_POST['cardfen'];
  31. GetFen_all($cardfen,$logininid,$loginin);
  32. }
  33. db_close();
  34. $empire=null;
  35. ?>
  36. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  37. <html>
  38. <head>
  39. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  40. <title>批量赠送点数</title>
  41. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  42. </head>
  43. <body>
  44. <table width="98%%" border="0" align="center" cellpadding="3" cellspacing="1">
  45. <tr>
  46. <td>位置: <a href="GetFen.php<?=$ecms_hashur['whehref']?>">批量赠送点数</a></td>
  47. </tr>
  48. </table>
  49. <form name="form1" method="post" action="GetFen.php">
  50. <table width="60%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  51. <?=$ecms_hashur['form']?>
  52. <tr class="header">
  53. <td height="25"><div align="center">批量增加点数
  54. <input name="enews" type="hidden" id="enews" value="GetFen">
  55. </div></td>
  56. </tr>
  57. <tr>
  58. <td height="25" bgcolor="#FFFFFF"><div align="center">请输入点数:
  59. <input name="cardfen" type="text" id="cardfen" value="0" size="6">
  60. <input type="submit" name="Submit" value="批量增加">
  61. </div></td>
  62. </tr>
  63. </table>
  64. </form>
  65. </body>
  66. </html>