国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.7KB

  1. <!DOCTYPE html
  2. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  6. <title>编辑评论</title>
  7. <style type="text/css">
  8. body {
  9. background-image: url(images/allbg.gif);
  10. }
  11. </style>
  12. <link rel="stylesheet" href="../static/css/bootstrap.min.css">
  13. <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  14. <link href="css/base.css" rel="stylesheet" type="text/css">
  15. </head>
  16. <body>
  17. <table width="98%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#cfcfcf" class="table maintable table-bordered mt-3">
  18. <tr>
  19. <td width="100%" height="24" colspan="2" background="images/tbg.gif" style="padding-left:10px;"><strong><a
  20. href="<?php echo $ENV_GOBACK_URL; ?>"><u>评论管理</u></a> &gt;&gt; 编辑评论:</strong>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td height="187" colspan="2" align="center" bgcolor="#FFFFFF">
  25. <form name="form1" method="post" action="feedback_edit.php">
  26. <input type="hidden" name="dopost" value="edit" />
  27. <input type="hidden" name="id" value="<?php echo $row['id']; ?>" />
  28. <table width="100%" border="0" cellpadding="3" cellspacing="1" style="text-align:left;" class="table table-borderless">
  29. <tr bgcolor="#FFFFFF">
  30. <td width="120" height="24">评论所属文章:</td>
  31. <td>
  32. <?php echo RemoveXSS($row['arctitle']);?>
  33. </td>
  34. </tr>
  35. <tr bgcolor="#FFFFFF">
  36. <td height="24">评论人:</td>
  37. <td>
  38. <input name="username" type="text" id="username" size="20" value="<?php echo $row['username']; ?>" />
  39. </td>
  40. </tr>
  41. <tr bgcolor="#FFFFFF">
  42. <td height="24">评论发布时间:</td>
  43. <td>
  44. <?php echo GetDateTimeMK($row['dtime']); ?>
  45. </td>
  46. </tr>
  47. <tr bgcolor="#FFFFFF">
  48. <td height="24">IP地址:</td>
  49. <td>
  50. <?php echo $row['ip']; ?>
  51. </td>
  52. </tr>
  53. <tr bgcolor="#FFFFFF">
  54. <td height="24">评论内容:</td>
  55. <td>更改的评论内容HTML代码不会被屏蔽,可用HTML语法编辑。</td>
  56. </tr>
  57. <tr bgcolor="#FFFFFF">
  58. <td height="62" align="center">&nbsp; </td>
  59. <td height="62">
  60. <textarea name="msg" cols="60" rows="5"
  61. id="msg"><?php echo cn_substr(Text2Html($row['msg']), 250); ?></textarea></td>
  62. </tr>
  63. <tr bgcolor="#FFFFFF">
  64. <td height="24">管理员回复:</td>
  65. <td>回复内容的HTML代码会被屏蔽。</td>
  66. </tr>
  67. <tr bgcolor="#FFFFFF">
  68. <td height="24" align="center">&nbsp; </td>
  69. <td height="24">
  70. <textarea name="adminmsg" cols="60" rows="5" id="adminmsg"></textarea></td>
  71. </tr>
  72. <tr bgcolor="#FFFFFF">
  73. <td height="40" width='600' colspan="2" align="center">
  74. <button type="submit" class="btn btn-success">保存更改</button>
  75. &nbsp;
  76. <button onClick="location='<?php echo $ENV_GOBACK_URL; ?>';" type="button" class="btn btn-success">不理返回</button>
  77. </td>
  78. </tr>
  79. </table>
  80. </form>
  81. </td>
  82. </tr>
  83. </table>
  84. </body>
  85. </html>