Example #1
0
<?php

require_once dirname(__FILE__) . './vendor/autoload.php';
//autoload packages
chk_lgn();
$db = new Database();
$user = new User($db->conn);
$appointment = new Appointments($db->conn);
$unum = $user->countAllPatients();
$dnum = $user->countAllDocss();
$anum = $appointment->countAll();
$apps = '';
if ($_SESSION['role'] == 'patient') {
    $apps = $appointment->getApp($_SESSION['user_id']);
}
require 'templates/header.php';
?>


<div id="page-wrapper">

    <div class="container-fluid">

        <!-- Page Heading -->
        <div class="row">
            <div class="col-lg-12">
                <h1 class="page-header">
                    Dashboard
                    <!-- <small>Add doctor</small> -->
                </h1>
                <ol class="breadcrumb">