|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!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="24" colspan="2" background="images/tbg.gif" style="padding-left:10px;"><strong><a
- href="<?php echo $ENV_GOBACK_URL; ?>"><u>评论管理</u></a> >> 编辑评论:</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="24">评论所属文章:</td>
- <td>
- <?php echo RemoveXSS($row['arctitle']);?>
- </td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="24">评论人:</td>
- <td>
- <input name="username" type="text" id="username" size="20" value="<?php echo $row['username']; ?>" />
- </td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="24">评论发布时间:</td>
- <td>
- <?php echo GetDateTimeMK($row['dtime']); ?>
- </td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="24">IP地址:</td>
- <td>
- <?php echo $row['ip']; ?>
- </td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="24">评论内容:</td>
- <td>更改的评论内容HTML代码不会被屏蔽,可用HTML语法编辑。</td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="62" align="center"> </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="24">管理员回复:</td>
- <td>回复内容的HTML代码会被屏蔽。</td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="24" align="center"> </td>
- <td height="24">
- <textarea name="adminmsg" cols="60" rows="5" id="adminmsg"></textarea></td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="40" width='600' colspan="2" align="center">
- <button type="submit" class="btn btn-success">保存更改</button>
-
- <button onClick="location='<?php echo $ENV_GOBACK_URL; ?>';" type="button" class="btn btn-success">不理返回</button>
- </td>
- </tr>
- </table>
- </form>
- </td>
- </tr>
- </table>
- </body>
-
- </html>
|