ViewMsg.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <?php
  8. $public_diyr['pagetitle']='查看消息';
  9. $url="<a href=../../../../>首页</a>&nbsp;>&nbsp;<a href=../../cp/>会员中心</a>&nbsp;>&nbsp;<a href=../../msg/>消息列表</a>&nbsp;>&nbsp;查看消息";
  10. require(ECMS_PATH.'e/template/incfile/header.php');
  11. ?>
  12. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  13. <form name="form1" method="post" action="../../doaction.php">
  14. <tr class="header">
  15. <td height="23" colspan="2">
  16. <?=stripSlashes($r[title])?> </td>
  17. </tr>
  18. <tr bgcolor="#FFFFFF">
  19. <td width="19%" height="25">发送者:</td>
  20. <td width="81%" height="25"><a href="../../ShowInfo/?userid=<?=$r[from_userid]?>">
  21. <?=$r[from_username]?>
  22. </a></td>
  23. </tr>
  24. <tr bgcolor="#FFFFFF">
  25. <td height="25">发送时间:</td>
  26. <td height="25">
  27. <?=$r[msgtime]?> </td>
  28. </tr>
  29. <tr bgcolor="#FFFFFF">
  30. <td height="25" valign="top">内容:</td>
  31. <td height="25">
  32. <?=nl2br(stripSlashes($r[msgtext]))?> </td>
  33. </tr>
  34. <tr bgcolor="#FFFFFF">
  35. <td height="25" valign="top">&nbsp;</td>
  36. <td height="25">[<a href="#ecms" onclick="javascript:history.go(-1);"><strong>返回</strong></a>]
  37. [<a href="../AddMsg/?enews=AddMsg&re=1&mid=<?=$mid?>"><strong>回复</strong></a>]
  38. [<a href="../AddMsg/?enews=AddMsg&mid=<?=$mid?>"><strong>转发</strong></a>]
  39. [<a href="../../doaction.php?enews=DelMsg&mid=<?=$mid?>" onclick="return confirm('确认要删除?');"><strong>删除</strong></a>]</td>
  40. </tr>
  41. </form>
  42. </table>
  43. <?php
  44. require(ECMS_PATH.'e/template/incfile/footer.php');
  45. ?>