Rev 46 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
<?php
//session_destroy(); die;
$page_title = 'CAMP Home';
include_once( 'header.php' );
//include_once( 'DBTemplate.class.php' );
if ( isset($_SESSION['user']) && $_SESSION['user']->name() ) { // we are logged in
include_once( 'menu.php' );
include_once( 'content.php' );
}
include_once( 'footer.php' );
?>