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

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. Function print_form() {
  3.    global $default;
  4.    global $template_obj;
  5.    global $user_lang_obj;
  6.    global $session_id;
  7.    $form_title = 'Add Domain';
  8.    include( './templates/form/form_top.inc' );
  9.    $name  = 'session_id';
  10.    $value = $session_id;
  11.    include( './templates/form/form_hidden_elem.inc' );
  12.    $desc_text = 'Domain name';
  13.    $desc      = 'This is the visible name for this "domain".';
  14.    $name      = 'new_domain_name';
  15.    $value     = $new_domain_name;
  16.    $size      = 40;
  17.    include( './templates/form/form_text_elem.inc' );
  18.    include( './templates/form/form_bottom.inc' );
  19. }
  20. include( './templates/main.inc' );
  21. $form_mode     = MANAGER_VDOMAIN_ADD;
  22. ?>