<?php
//
//start everything needed
//
$root = '../';
$page_name = 'Admin Home';
$page_file = basename(__FILE__);
$admin = 1;
include($root . "includes/common.php");
$page_mode = (isset($_GET['mode'])) ? $_GET['mode'] : '';
check_admin('3');
//
//Start the page
//
//dbstart(); //start databse --- already started
//
//Start the output of the page
//
admin_header('normal');
echo "hello Admin";
admin_footer('normal');
//
//End the page
//
dbend(); //end the database
?>