AddMsg.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 action="../../doaction.php" method="post" name="sendmsg" id="sendmsg">
  14. <tr class="header">
  15. <td height="23" colspan="2">发送消息</td>
  16. </tr>
  17. <tr bgcolor="#FFFFFF">
  18. <td width="21%" height="25">标题</td>
  19. <td width="79%" height="25"><input name="title" type="text" id="title2" value="<?=ehtmlspecialchars(stripSlashes($title))?>" size="43">
  20. *</td>
  21. </tr>
  22. <tr bgcolor="#FFFFFF">
  23. <td height="25">接收者</td>
  24. <td height="25"><input name="to_username" type="text" id="to_username2" value="<?=$username?>">
  25. [<a href="#EmpireCMS" onclick="window.open('../../friend/change/?fm=sendmsg&f=to_username','','width=250,height=360');">选择好友</a>]
  26. *</td>
  27. </tr>
  28. <tr bgcolor="#FFFFFF">
  29. <td height="25" valign="top">内容</td>
  30. <td height="25"><textarea name="msgtext" cols="60" rows="12" id="textarea"><?=ehtmlspecialchars(stripSlashes($msgtext))?></textarea>
  31. *</td>
  32. </tr>
  33. <tr bgcolor="#FFFFFF">
  34. <td height="25">&nbsp;</td>
  35. <td height="25"><input type="submit" name="Submit" value="发送">
  36. &nbsp;
  37. <input type="reset" name="Submit2" value="重置"> <input name="enews" type="hidden" id="enews" value="AddMsg"> </td>
  38. </tr>
  39. </form>
  40. </table>
  41. <?php
  42. require(ECMS_PATH.'e/template/incfile/footer.php');
  43. ?>