SetPayFen.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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,"pay");
  21. $r=$empire->fetch1("select paymoneytofen,payminmoney from {$dbtbpre}enewspublic limit 1");
  22. $url="在线支付&gt; <a href=PayApi.php".$ecms_hashur['whehref'].">管理支付接口</a>&nbsp;>&nbsp;支付参数配置";
  23. db_close();
  24. $empire=null;
  25. ?>
  26. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  27. <html>
  28. <head>
  29. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  30. <title>支付参数配置</title>
  31. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  32. </head>
  33. <body>
  34. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  35. <tr>
  36. <td width="50%">位置:
  37. <?=$url?>
  38. </td>
  39. <td><div align="right" class="emenubutton">
  40. <input type="button" name="Submit5" value="管理支付记录" onclick="self.location.href='ListPayRecord.php<?=$ecms_hashur['whehref']?>';">
  41. &nbsp;&nbsp;
  42. <input type="button" name="Submit52" value="管理支付接口" onclick="self.location.href='PayApi.php<?=$ecms_hashur['whehref']?>';">
  43. </div></td>
  44. </tr>
  45. </table>
  46. <form name="setpayform" method="post" action="PayApi.php" enctype="multipart/form-data">
  47. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  48. <?=$ecms_hashur['form']?>
  49. <tr class="header">
  50. <td height="25" colspan="2">支付参数配置
  51. <input name="enews" type="hidden" id="enews" value="SetPayFen">
  52. </td>
  53. </tr>
  54. <tr bgcolor="#FFFFFF">
  55. <td width="23%" height="25"><div align="right">一元可购买:</div></td>
  56. <td width="77%" height="25"><input name="paymoneytofen" type="text" id="paymoneytofen" value="<?=$r[paymoneytofen]?>" size="35">
  57. 点数</td>
  58. </tr>
  59. <tr bgcolor="#FFFFFF">
  60. <td height="25"><div align="right">最小支付金额:</div></td>
  61. <td height="25"><input name="payminmoney" type="text" id="payminmoney" value="<?=$r[payminmoney]?>" size="35">
  62. 元</td>
  63. </tr>
  64. <tr bgcolor="#FFFFFF">
  65. <td height="25">&nbsp;</td>
  66. <td height="25"><input type="submit" name="Submit" value=" 设 置 "> &nbsp;&nbsp;&nbsp;<input type="reset" name="Submit2" value="重置"></td>
  67. </tr>
  68. </table>
  69. </form>
  70. </body>
  71. </html>