Your IP : 216.73.217.79


Current Path : /var/www/cesa.co.za/cceconvenors/
Upload File :
Current File : /var/www/cesa.co.za/cceconvenors/studentdb.php

<?php

//ini_set('display_errors', 1);
//error_reporting(E_ALL);

session_start(); // Initialize Session data
ob_start(); // Turn on output buffering

include_once("ewcfg7.php");
include_once("ewmysql7.php");
include_once("phpfn7.php");
include_once("CCEAssignmentsinfo.php");
include_once("userfn7.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/cesanet/inc_shared.php");

if (!isset($_SESSION[EW_SESSION_STATUS]) || ($_SESSION[EW_SESSION_STATUS] != "login")) {
    header("Location: http://www.cesa.co.za/cceconvenors/login.php");
    die();
}
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // Always modified
header("Cache-Control: private, no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache"); // HTTP/1.0
?>
<?php include "header.php" ?>
<script language="javascript" src="/cesanet/calendar.js"></script>
<style type="text/css">
    <!--
    .style2 {
        color: #FFFFFF
    }
    -->
</style>
<h1>Trimester Dashboard</h1>
<?php

$conni = mysqli_connect(EW_CONN_HOST, EW_CONN_USER, EW_CONN_PASS, EW_CONN_DB);

$_SESSION["StudentID"] = 54;

include_once("../cesanet/inc_dashboard.php");
?>

<?php include "footer.php" ?>