📄 showmessage.php
字号:
<?session_start();include_once("../public/function.php");include_once("../public/db_conn.php");if($_REQUEST["mtype"]=="web"){ $sqlf=" and to_type=2 and username='$_SESSION[web_username]'";}else{ $sqlf=" and to_type=4 and username='$_SESSION[adser_username]'";}$rs=mysql_query("select * from message where is_view=0 $sqlf and s_id=0 order by id desc");$row=mysql_fetch_array($rs);$conn=nl2br($row["conn"]);?><title>最新留言信息 -- 来自管理员</title><link href="../public/index.css" rel="stylesheet" type="text/css"><script src="../public/check.js"></script><table width="100%" height=100% border="0" align="right" cellpadding="10" cellspacing="1" bgcolor="#CCCCCC"> <tr> <td valign="top" class="bgconn"> <table width="100%" border="0" cellspacing="1" cellpadding="6" class="listtable"> <form name="form1" method="post" action=""> <tr class="listbody"> <td height="25" colspan="4" class="listtbhd"><div align="center">最新留言</div></td> </tr> <tr class="listbody"> <td width="15%" align="center">[标题]</td> <td width="85%"><?=$row["tit"]?></td> </tr> <tr class="listbody"> <td align="center">[时间]</td> <td width="85%"><?=$row["time"]?></td> </tr> <tr class="listbody"> <td align="center">[内容]</td> <td width="85%"><?=$conn?></td> </tr> <tr class="listbody"> <td colspan="4" align="center"> <input name="button_r" type="button" class="subbt" value="关闭窗口" onClick="window.close()"></td> </tr> </form> </table> <p>注:请点击"留言管理"查看详细。 <br> <br> </p> </tr></table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -