项目作者: tanjimanasreen

项目描述 :
A booking management system for classrooms in advance for an Education Institute.
高级语言: CSS
项目地址: git://github.com/tanjimanasreen/Classroom-Booking-System.git
创建时间: 2018-12-20T14:15:59Z
项目社区:https://github.com/tanjimanasreen/Classroom-Booking-System

开源协议:

下载


Classroom Booking System


Short Description:

A booking management system where Faculties in an university can book classrooms in advance with the approval of an Admin. Both users can perform basic CRUD operations.

Database is in the model directory.
For Admin, Username : 123-45678-1, password : 123
For Faculty, Username : 16-31237-1, password : Abc1234%

Prerequisites

  1. Apache Server for php (e.g., xampp), MySql

Target Users of this application:

  • Administration personnel and Faculties in an education system (i.e., University, School).

Download

  • Clone the repository
    1. git clone https://github.com/tanjimanasreen/Classroom-Booking-System.git

Features :

  • User Access :

    • User can sign in to the system.
    • User can register.
    • User can sign out from the system.
    • User can do live search.
  • User Control :

    • Admin Panel:

      • View and cancel bookings.
      • Create new bookings.
      • View booking history
      • Add courses, classroom or departments.
      • Approve and delete users.
    • Faculty (User) Panel:

      • View upcoming bookings.
      • Create and cancel bookings.
      • View booking history.

Data Model

Import the model in your database available here in cbs.sql file.

Database Connection:

  1. <?php
  2. function execute($query){
  3. $conn= mysqli_connect('localhost','root','','cbs');
  4. $result = mysqli_query($conn,$query);
  5. mysqli_close($conn);
  6. return $result;
  7. }
  8. ?>

Login Information

  1. * Admin Username: 123-45678-1, Password : 123
  2. * Faculty Username : 16-31237-1, Password : Abc1234%

Relational Schema Diagram :

" class="reference-link">alt text

User Interface:

Login Page

alt text

Registration Page:

" class="reference-link">alt text

Admin Panel:

alt text
alt text
alt text

" class="reference-link">alt text

Faculty Panel:

alt text
alt text
alt text
alt text