AddSpClass.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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,"sp");
  20. $enews=ehtmlspecialchars($_GET['enews']);
  21. $postword='增加碎片分类';
  22. $url="<a href=ListSp.php".$ecms_hashur['whehref'].">管理碎片</a>&nbsp;>&nbsp;<a href=ListSpClass.php".$ecms_hashur['whehref'].">管理碎片分类</a>&nbsp;>&nbsp;增加碎片分类";
  23. //修改
  24. if($enews=="EditSpClass")
  25. {
  26. $postword='修改碎片分类';
  27. $classid=(int)$_GET['classid'];
  28. $r=$empire->fetch1("select * from {$dbtbpre}enewsspclass where classid='$classid'");
  29. $url="<a href=ListSp.php".$ecms_hashur['whehref'].">管理碎片</a>&nbsp;>&nbsp;<a href=ListSpClass.php".$ecms_hashur['whehref'].">管理碎片分类</a>&nbsp;>&nbsp;修改碎片分类:".$r[classname];
  30. }
  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. <title>碎片分类</title>
  39. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  40. </head>
  41. <body>
  42. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  43. <tr>
  44. <td>位置:<?=$url?></td>
  45. </tr>
  46. </table>
  47. <form name="form1" method="post" action="ListSpClass.php">
  48. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  49. <?=$ecms_hashur['form']?>
  50. <tr class="header">
  51. <td height="25" colspan="2"><?=$postword?></td>
  52. </tr>
  53. <tr bgcolor="#FFFFFF">
  54. <td width="21%" height="25">分类名称:</td>
  55. <td width="79%" height="25"><input name="classname" type="text" id="classname" size="42" value="<?=$r[classname]?>">
  56. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="classid" type="hidden" id="classid" value="<?=$r[classid]?>"></td>
  57. </tr>
  58. <tr bgcolor="#FFFFFF">
  59. <td height="25">分类说明:</td>
  60. <td height="25"><textarea name="classsay" cols="60" rows="5" id="classsay"><?=ehtmlspecialchars($r[classsay])?></textarea></td>
  61. </tr>
  62. <tr bgcolor="#FFFFFF">
  63. <td height="25">&nbsp;</td>
  64. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  65. </tr>
  66. </table>
  67. </form>
  68. </body>
  69. </html>