国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

80 行
3.4KB

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