<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  <title>编辑评论</title>
  <style type="text/css">
    body {
      background-image: url(images/allbg.gif);
    }
  </style>
	<link rel="stylesheet" href="../static/css/bootstrap.min.css">
	<link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  <link href="css/base.css" rel="stylesheet" type="text/css">
</head>
<body>
  <table width="98%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="#cfcfcf" class="table maintable table-bordered mt-3">
    <tr>
      <td width="100%" height="26" colspan="2" background="images/tbg.gif" style="padding-left:10px"><strong><a href="<?php echo $ENV_GOBACK_URL; ?>">评论管理</a> &gt;&gt; 编辑评论:</strong>
      </td>
    </tr>
    <tr>
      <td height="187" colspan="2" align="center" bgcolor="#FFFFFF">
        <form name="form1" method="post" action="feedback_edit.php">
          <input type="hidden" name="dopost" value="edit" />
          <input type="hidden" name="id" value="<?php echo $row['id']; ?>" />
          <table width="100%" border="0" cellpadding="3" cellspacing="1" style="text-align:left;" class="table table-borderless">
            <tr bgcolor="#FFFFFF">
              <td width="120" height="26">评论所属文章:</td>
              <td>
                <?php echo RemoveXSS($row['arctitle']);?>
              </td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="26">评论人:</td>
              <td>
                <input name="username" type="text" id="username" size="20" value="<?php echo $row['username']; ?>" />
              </td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="26">评论发布时间:</td>
              <td>
                <?php echo GetDateTimeMK($row['dtime']); ?>
              </td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="26">IP地址:</td>
              <td>
                <?php echo $row['ip']; ?>
              </td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="26">评论内容:</td>
              <td>修改的评论内容HTML代码不会被屏蔽,可用HTML语法编辑</td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="62" align="center">&nbsp; </td>
              <td height="62">
                <textarea name="msg" cols="60" rows="5"
                  id="msg"><?php echo cn_substr(Text2Html($row['msg']), 250); ?></textarea></td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="26">管理员回复:</td>
              <td>回复内容的HTML代码会被屏蔽</td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="26" align="center">&nbsp; </td>
              <td height="26">
                <textarea name="adminmsg" cols="60" rows="5" id="adminmsg"></textarea></td>
            </tr>
            <tr bgcolor="#FFFFFF">
              <td height="36" width='600' colspan="2" align="center">
                <button type="submit" class="btn btn-success">保存修改</button>
                &nbsp;
                <button onClick="location='<?php echo $ENV_GOBACK_URL; ?>';" type="button" class="btn btn-success">不理返回</button>
              </td>
            </tr>
          </table>
        </form>
      </td>
    </tr>
  </table>
</body>

</html>