[ PHPXref.com ] [ Generated: Sun Jul 20 19:12:48 2008 ] [ OSC 2.0.5 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/Include/ -> Header-Short.php (source)

   1  <?php
   2  /*******************************************************************************
   3   *
   4   *  filename    : Include/Header-Short.php
   5   *  last change : 2003-05-29
   6   *  description : page header (simplified version with no menubar)
   7   *
   8   *  http://osc.sourceforge.net
   9   *
  10   *  This product is based upon work previously done by Infocentral (infocentral.org)
  11   *  on their PHP version Church Management Software that they discontinued
  12   *  and we have taken over.  We continue to improve and build upon this product
  13   *  in the direction of excellence.
  14   * 
  15   *  OpenSourceChurch (OSC) is free software; you can redistribute it and/or modify
  16   *  it under the terms of the GNU General Public License as published by
  17   *  the Free Software Foundation; either version 2 of the License, or
  18   *  (at your option) any later version.
  19   * 
  20   *  Any changes to the software must be submitted back to the OpenSourceChurch project
  21   *  for review and possible inclusion.
  22   *
  23   *  Copyright 2001-2002 Phillip Hullquist, Deane Barker
  24   ******************************************************************************/
  25  
  26  // Turn ON output buffering
  27  ob_start();
  28  
  29  ?>
  30  <html>
  31  
  32  <head>
  33      <meta http-equiv="pragma" content="no-cache">
  34      <title>OSC: <?php echo $sPageTitle; ?></title>
  35      <link rel="stylesheet" type="text/css" href="Include/<?php echo $_SESSION['sStyle']; ?>">
  36  </head>
  37  
  38  <body>
  39  
  40  <table height="100%" width="100%" border="0" cellpadding="5" cellspacing="0" align="center">
  41      <tr>
  42          <td valign="top" width="100%" align="center">
  43              <table width="98%" border="0">
  44                  <tr>
  45                      <td valign="top">
  46                          <br>
  47                          <p class="PageTitle"><?php echo $sPageTitle; ?></p>                        


[ Powered by PHPXref - Served by Debian GNU/Linux ]