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

WEB邮件程序

开发平台:

PHP

  1. <?php include( $default->template_base . '/doctype.inc' ); ?>
  2. <?php /* Include non-cachable headers */ ?>
  3. <html>
  4. <head>
  5. <?php if (isset($title) ) { ?>
  6. <title><?php echo $title; ?></title>
  7. <?php } ?>
  8. <?php if (isset($refresh) && $refresh) { ?>
  9. <meta http-equiv="refresh" content="<?php echo $default->refresh_delay; ?>">
  10. <?php } ?>
  11. <?php if (isset($charset)) { ?>
  12. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>">
  13. <?php } ?>
  14. <?php echo $template_obj->GetValue( 'default_style_sheet' ); ?>
  15. </head>
  16. <?php echo $template_obj->GetValue( 'default_body_tag' ); ?>