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

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. Function print_form() {
  3.    global $default;
  4.    global $template_obj;
  5.    echo( $template_obj->GetValue( 'content_table_start' ) );
  6. ?>
  7.       <tr <?php echo $template_obj->GetValue( 'title_bgcolor' ); ?>>
  8.       <td><?php echo $template_obj->GetValue( 'title_font' ); ?>
  9.       <b>User management</b> </td>
  10.       </tr>
  11.       <tr <?php echo $template_obj->GetValue( 'default_bgcolor' ); ?>>
  12.       <td><?php echo $template_obj->GetValue( 'default_font' ); ?>
  13. Within this application you can add, edit, and delete users.
  14.       </td>
  15.       </tr>
  16.    </table>
  17.    </td> </tr>
  18. </table>
  19. <?php
  20. }
  21. include( './templates/main.inc' );
  22. ?>