form.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
- <?php
- Function print_form() {
- global $default;
- global $template_obj;
- global $user_lang_obj;
- global $session_id;
- $form_title = 'Add Domain';
- include( './templates/form/form_top.inc' );
- $name = 'session_id';
- $value = $session_id;
- include( './templates/form/form_hidden_elem.inc' );
- $desc_text = 'Domain name';
- $desc = 'This is the visible name for this "domain".';
- $name = 'new_domain_name';
- $value = $new_domain_name;
- $size = 40;
- include( './templates/form/form_text_elem.inc' );
- include( './templates/form/form_bottom.inc' );
- }
- include( './templates/main.inc' );
- $form_mode = MANAGER_VDOMAIN_ADD;
- ?>