newpm.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <?php
  2. // +-------------------------------------------------------------+
  3. // | DeskPRO v [2.0.1 Production]
  4. // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
  5. // | Supplied by WTN-WDYL
  6. // | Nullified by WTN-WDYL
  7. // | Distribution via WebForum, ForumRU and associated file dumps
  8. // +-------------------------------------------------------------+
  9. // | DESKPRO IS NOT FREE SOFTWARE
  10. // +-------------------------------------------------------------+
  11. // | License ID : Full Enterprise License =) ...
  12. // | License Owner : WTN-WDYL Team
  13. // +-------------------------------------------------------------+
  14. // | $RCSfile: newpm.php,v $
  15. // | $Date: 2004/02/10 01:34:30 $
  16. // | $Revision: 1.11 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - New private message
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL ^ E_NOTICE);
  22. include "./../global.php";
  23. tech_nav('teamwork');
  24. // default do
  25. $_REQUEST['do'] = trim($_REQUEST['do']);
  26. if (!isset($_REQUEST['do']) or $_REQUEST['do'] == "") {
  27. $_REQUEST['do'] = "send";
  28. }
  29. $db->query("SELECT id, username FROM tech WHERE !disabled AND id != '$user[id]' ORDER BY username");
  30. while ($res = $db->row_array()) {
  31. $users[$res['id']] = $res['username'];
  32. }
  33. $table[] = array('<b>Title</b>', form_input('title'));
  34. $table[] = array('<b>Send To</b>', form_select('to', $users, '', $_REQUEST[id], '', '', 5));
  35. $table[] = array('<b>Message</b>', form_textarea('message', 80, 10));
  36. table_header('Send a New Message', 'pms.php', array('do' => 'add2'));
  37. table_content('', $table);
  38. table_footer('Send Message');
  39. tech_footer();
  40. ?>