国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

56 строки
2.6KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>安装支付接口</title>
  6. <link href="css/base.css" rel="stylesheet" type="text/css" />
  7. </head>
  8. <style>
  9. .npvar {
  10. width:90%
  11. }
  12. </style>
  13. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  14. <center>
  15. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6">
  16. <tr>
  17. <td height="28" background="images/tbg.gif">&nbsp;<b><a href="sys_payment.php"><u>支付接口列表</u></a></b> &gt;&gt; 安装支付接口 </td>
  18. </tr>
  19. <tr>
  20. <td height="200" bgcolor="#FFFFFF" valign="top"><table width="100%" border="0" cellspacing="4" cellpadding="4">
  21. <form action="sys_payment.php" method="post" enctype="multipart/form-data" name="form1">
  22. <input type='hidden' name='pid' value='<?php echo $row['id'];?>'>
  23. <input type='hidden' name='pm' value='<?php echo $pm;?>'>
  24. <input type='hidden' name='dopost' value='config'>
  25. <tr>
  26. <td height="25" align="center">支付名称:</td>
  27. <td width="85%"><input name="pay_name" type="text" class='iptxt' id="pay_name" value="<?php echo $row['name'];?>" size="30" /></td>
  28. </tr>
  29. <tr>
  30. <td width="15%" height="108" align="center">支付描述:</td>
  31. <td><textarea name="pay_desc" cols="75" id="pay_desc" style="height:100"><?php echo $row['description'];?></textarea></td>
  32. </tr>
  33. <?php echo $reval ?>
  34. <tr>
  35. <td height="25" align="center">手续费:</td>
  36. <td><input name="pay_fee" type="text" class='iptxt' id="pay_fee" size="10" value="<?php echo $row['fee'];?>"/> 元</td>
  37. </tr>
  38. <tr>
  39. <td height="25" align="center">货到付款:</td>
  40. <td><?php echo ($row['cod']==0)? '否':'是';?></td>
  41. </tr>
  42. <tr>
  43. <td height="25" align="center">在线支付:</td>
  44. <td><?php echo ($row['online']==0)? '否':'是';?></td>
  45. </tr>
  46. <tr>
  47. <td height="53" align="center">&nbsp;</td>
  48. <td><input name="imageField" type="submit" class="np coolbg" value="确定"/></td>
  49. </tr>
  50. </form>
  51. </table></td>
  52. </tr>
  53. </table>
  54. </center>
  55. </body>
  56. </html>