form.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. Function print_form() {
  3. global $default;
  4. global $lang;
  5. global $session_id;
  6. global $user_db;
  7. global $template_obj;
  8. global $target_username;
  9. global $target_domain_id;
  10. $form_title = 'Add phone number for ' . $target_username;
  11. include( './templates/form/form_top.inc' );
  12. $value = $session_id;
  13. $name  = 'session_id';
  14. include( './templates/form/form_hidden_elem.inc' );
  15. $value = $target_username;
  16. $name  = 'target_username';
  17. include( './templates/form/form_hidden_elem.inc' );
  18. $value = $target_domain_id;
  19. $name  = 'target_domain_id';
  20. include( './templates/form/form_hidden_elem.inc' );
  21. $desc_text = 'Phone type';
  22. $name      = 'phone_number_type';
  23. $value    = Array();
  24. $value[]  = 'HOME';
  25. $value[]  = 'WORK';
  26. $value[]  = 'MOBILE';
  27. include( './templates/form/form_multiselect_elem.inc' );
  28. $value      = $phone_number;
  29. $desc_text  = 'Phone Number';
  30. $desc       = '';
  31. $size       = 50;
  32. $name       = 'phone_number';
  33. include( './templates/form/form_text_elem.inc' );
  34. include( './templates/form/form_bottom.inc' );
  35. }
  36. include( './templates/main.inc' );
  37. $form_mode = MANAGER_USER_ADD_PHONE;
  38. ?>