AddPicNews.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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,"picnews");
  20. $url="<a href=ListPicNews.php".$ecms_hashur['whehref'].">管理图片信息</a>&nbsp;>&nbsp;增加图片信息";
  21. $enews=ehtmlspecialchars($_GET['enews']);
  22. //修改图片信息
  23. if($enews=="EditPicNews")
  24. {
  25. $picid=(int)$_GET['picid'];
  26. $r=$empire->fetch1("select title,pic_url,url,pic_width,pic_height,open_pic,border,pictext,classid from {$dbtbpre}enewspic where picid='$picid'");
  27. $open_pic0=" selected";
  28. $open_pic1="";
  29. if($r[open_pic]=="_parent")
  30. {
  31. $open_pic0="";
  32. $open_pic1=" selected";
  33. }
  34. }
  35. //图片类别
  36. $sql=$empire->query("select classid,classname from {$dbtbpre}enewspicclass order by classid");
  37. while($cr=$empire->fetch($sql))
  38. {
  39. if($r[classid]==$cr[classid])
  40. {$select=" selected";}
  41. else
  42. {$select="";}
  43. $class.="<option value=".$cr[classid].$select.">".$cr[classname]."</option>";
  44. }
  45. db_close();
  46. $empire=null;
  47. ?>
  48. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  49. <html>
  50. <head>
  51. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  52. <title>管理图片信息</title>
  53. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  54. </head>
  55. <body>
  56. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  57. <tr>
  58. <td>位置:<?=$url?>
  59. </td>
  60. </tr>
  61. </table>
  62. <form name="form1" method="post" action="ListPicNews.php">
  63. <?=$ecms_hashur['form']?>
  64. <input type=hidden name=enews value=<?=$enews?>>
  65. <input type=hidden name=picid value=<?=$picid?>>
  66. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  67. <tr class="header">
  68. <td height="25" colspan="2">增加图片信息</td>
  69. </tr>
  70. <tr bgcolor="#FFFFFF">
  71. <td height="25">请选择类别:</td>
  72. <td height="25"><select name="add[classid]" id="add[classid]">
  73. <?=$class?>
  74. </select>
  75. <input type="button" name="Submit6222" value="管理分类" onclick="window.open('PicClass.php<?=$ecms_hashur['whehref']?>');"></td>
  76. </tr>
  77. <tr bgcolor="#FFFFFF">
  78. <td width="18%" height="25">图片地址:</td>
  79. <td width="82%" height="25"><input name="pic_url" type="text" id="pic_url" value="<?=$r[pic_url]?>" size="36">
  80. <a onclick="window.open('../ecmseditor/FileMain.php?modtype=5&type=1&classid=&doing=2&field=pic_url<?=$ecms_hashur['ehref']?>','','width=700,height=550,scrollbars=yes');" title="选择已上传的图片"><img src="../../data/images/changeimg.gif" width="22" height="22" border="0" align="absbottom"></a>
  81. <input name="pic_width" type="text" id="pic_width" value="<?=$r[pic_width]?>" size="4">
  82. × 高
  83. <input name="pic_height" type="text" id="pic_height" value="<?=$r[pic_height]?>" size="4">
  84. ,边框:
  85. <input name="border" type="text" id="border" value="<?=$r[border]?>" size="2"></td>
  86. </tr>
  87. <tr bgcolor="#FFFFFF">
  88. <td height="25">信息标题:</td>
  89. <td height="25"><input name="title" type="text" id="title" value="<?=$r[title]?>" size="50"></td>
  90. </tr>
  91. <tr bgcolor="#FFFFFF">
  92. <td height="25">链接地址:</td>
  93. <td height="25"><input name="url" type="text" id="url" value="<?=$r[url]?>" size="50">
  94. <select name=open_pic id="open_pic">
  95. <option value="_blank"<?=$open_pic0?>>在新窗口打开</option>
  96. <option value="_parent"<?=$open_pic1?>>在原窗口打开</option>
  97. </select></td>
  98. </tr>
  99. <tr bgcolor="#FFFFFF">
  100. <td height="25" valign="top">信息简介:</td>
  101. <td height="25"><textarea name="pictext" cols="65" rows="6" id="pictext"><?=$r[pictext]?></textarea></td>
  102. </tr>
  103. <tr bgcolor="#FFFFFF">
  104. <td height="25">&nbsp;</td>
  105. <td height="25"><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td>
  106. </tr>
  107. </table>
  108. </form>
  109. </body>
  110. </html>