A booking management system for classrooms in advance for an Education Institute.
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%
Apache Server for php (e.g., xampp), MySql
git clone https://github.com/tanjimanasreen/Classroom-Booking-System.git
User Access :
User Control :
Admin Panel:
Faculty (User) Panel:
Import the model in your database available here in cbs.sql
file.
<?php
function execute($query){
$conn= mysqli_connect('localhost','root','','cbs');
$result = mysqli_query($conn,$query);
mysqli_close($conn);
return $result;
}
?>
* Admin Username: 123-45678-1, Password : 123
* Faculty Username : 16-31237-1, Password : Abc1234%