AddPs.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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,"shopps");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $url="<a href=ListPs.php".$ecms_hashur['whehref'].">管理配送方式</a>&nbsp;>&nbsp;增加配送方式";
  22. if($enews=="EditPs")
  23. {
  24. $pid=(int)$_GET['pid'];
  25. $r=$empire->fetch1("select * from {$dbtbpre}enewsshopps where pid='$pid'");
  26. $url="<a href=ListPs.php".$ecms_hashur['whehref'].">管理配送方式</a>&nbsp;>&nbsp;修改配送方式:<b>".$r[pname]."</b>";
  27. }
  28. //--------------------html编辑器
  29. include('../ecmseditor/eshoweditor.php');
  30. $loadeditorjs=ECMS_ShowEditorJS('../ecmseditor/infoeditor/');
  31. db_close();
  32. $empire=null;
  33. ?>
  34. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  35. <html>
  36. <head>
  37. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  38. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  39. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  40. <title>配送方式</title>
  41. <?=$loadeditorjs?>
  42. <script>
  43. function on()
  44. {
  45. var f=document.add
  46. f.HTML.value=f.psay.value;
  47. }
  48. function bs(){
  49. var f=document.add
  50. f.psay.value=f.HTML.value;
  51. }
  52. function br(){
  53. if(!confirm("是否复位?")){return false;}
  54. document.add.title.select()
  55. }
  56. </script>
  57. </head>
  58. <body>
  59. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  60. <tr>
  61. <td>位置:<?=$url?></td>
  62. </tr>
  63. </table>
  64. <form name="add" method="post" action="ListPs.php">
  65. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  66. <?=$ecms_hashur['form']?>
  67. <tr class="header">
  68. <td width="21%" height="25">增加配送方式</td>
  69. <td width="79%" height="25"><input name="enews" type="hidden" id="enews" value="<?=$enews?>">
  70. <input name="pid" type="hidden" id="pid" value="<?=$pid?>"></td>
  71. </tr>
  72. <tr bgcolor="#FFFFFF">
  73. <td height="25">方式名称:</td>
  74. <td height="25"><input name="pname" type="text" id="pname" value="<?=$r[pname]?>">
  75. (如:普通邮递) </td>
  76. </tr>
  77. <tr bgcolor="#FFFFFF">
  78. <td height="25">运费金额:</td>
  79. <td height="25"><input name="price" type="text" id="price" value="<?=$r[price]?>" size="8">
  80. 元</td>
  81. </tr>
  82. <tr bgcolor="#FFFFFF">
  83. <td height="25" valign="top">详细说明:</td>
  84. <td height="25">
  85. <?=ECMS_ShowEditorVar('psay',$r[psay],'Default','../ecmseditor/infoeditor/')?> </td>
  86. </tr>
  87. <tr bgcolor="#FFFFFF">
  88. <td height="25">是否启用</td>
  89. <td height="25"><input type="radio" name="isclose" value="0"<?=$r[isclose]==0?' checked':''?>>
  90. 开启
  91. <input type="radio" name="isclose" value="1"<?=$r[isclose]==1?' checked':''?>>
  92. 关闭</td>
  93. </tr>
  94. <tr bgcolor="#FFFFFF">
  95. <td height="25">&nbsp;</td>
  96. <td height="25"> <input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  97. </tr>
  98. </table>
  99. </form>
  100. </body>
  101. </html>