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

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. /*
  3. The Actual calls to element includes and such are contained within
  4. functions to prevent varaible collision in the main namespace.
  5. */
  6. Function print_form() {
  7. global $default;
  8. global $lang;
  9. global $new_domain;
  10. $form_title = 'Add Domain';
  11. include( './templates/form/form_top.inc' );
  12. $value      = 'Domain Attributes';
  13. $desc       = 'These are the "basic" attributes a domain has.';
  14. include( './templates/form/form_section_title.inc' );
  15. $value      = $new_domain;
  16. $desc_text  = 'Domain';
  17. $desc       = 'This is the domain name you would like added ex. rmi.net';
  18. $size       = 50;
  19. $name       = 'new_domain';
  20. include( './templates/form/form_text_elem.inc' ); 
  21. include( './templates/form/form_bottom.inc' );
  22. }
  23. $action        = DOMAIN_ADD;
  24. include( './templates/main.inc' );
  25. ?>