国内流行的内容管理系统(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.

86 lines
3.7KB

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