Creating a Smart Attendance System involves several components, including a MySQL database schema, file structure, layout design using Bootstrap 5, and complete PHP scripts for user authentication and management. Below is a comprehensive guide to help you set up your system.
Project Introduction
The Smart Attendance System is designed to streamline the process of tracking student attendance in educational institutions. This system allows teachers to record attendance, manage classes, and generate reports on student attendance patterns. With a user-friendly interface and a robust MySQL database backend, the platform ensures secure data management and provides an efficient experience for administrators, teachers, and students.
Project Objectives
- To create a secure user registration and login system for administrators, teachers, and students.
- To enable teachers to create and manage classes, including scheduling and location details.
- To facilitate the recording of attendance for each class session, including options for late arrivals.
- To maintain detailed student profiles, including contact information and enrollment dates.
- To provide notifications to users regarding attendance updates and important announcements.
- To collect feedback from users regarding the system and their experiences.
- To generate reports on attendance statistics for administrative purposes.
Project Modules
- User Management: Handles user registration, login, and role-based access for admins, teachers, and students.
- Class Management: Allows teachers to create, edit, and manage classes, including scheduling and location.
- Attendance Management: Facilitates the recording and tracking of student attendance for each class.
- Student Profile Management: Maintains detailed profiles for students, including contact information and enrollment details.
- Notification System: Sends notifications to users regarding attendance updates and important messages.
- Feedback System: Collects and manages feedback from users regarding their experiences with the system.
- Reporting Module: Generates reports on attendance patterns and statistics for administrative review.
1. MySQL Database Schema
CREATE DATABASE smart_attendance_system;
USE smart_attendance_system;
-- Table for users
CREATE TABLE users (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(50) NOT NULL UNIQUE,
password VARCHAR(255) NOT NULL,
email VARCHAR(100) NOT NULL UNIQUE,
role ENUM('admin', 'teacher', 'student') DEFAULT 'student',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Table for classes
CREATE TABLE classes (
id INT AUTO_INCREMENT PRIMARY KEY,
class_name VARCHAR(100) NOT NULL,
subject VARCHAR(100) NOT NULL,
schedule_time TIME NOT NULL,
location VARCHAR(255),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Table for attendance records
CREATE TABLE attendance (
id INT AUTO_INCREMENT PRIMARY KEY,
student_id INT NOT NULL,
class_id INT NOT NULL,
attendance_date DATE NOT NULL,
status ENUM('present', 'absent', 'late') DEFAULT 'present',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (student_id) REFERENCES users(id) ON DELETE CASCADE,
FOREIGN KEY (class_id) REFERENCES classes(id) ON DELETE CASCADE
);
-- Table for student profiles
CREATE TABLE student_profiles (
id INT AUTO_INCREMENT PRIMARY KEY,
user_id INT NOT NULL,
enrollment_date DATE NOT NULL,
contact_number VARCHAR(15),
address VARCHAR(255),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
);
-- Table for notifications
CREATE TABLE notifications (
id INT AUTO_INCREMENT PRIMARY KEY,
user_id INT NOT NULL,
message TEXT NOT NULL,
is_read BOOLEAN DEFAULT FALSE,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
);
-- Table for feedback
CREATE TABLE feedback (
id INT AUTO_INCREMENT PRIMARY KEY,
user_id INT NOT NULL,
comments TEXT,
rating INT CHECK (rating >= 1 AND rating <= 5),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
);
2. File and Folder Structure
smart_attendance_system/
│
├── config/
│ └── db.php
│
├── public/
│ ├── index.php
│ ├── login.php
│ ├── register.php
│ ├── dashboard.php
│ ├── attendance.php
│ ├── classes.php
│ ├── notifications.php
│ ├── feedback.php
│ ├── reports.php
│ └── admin_dashboard.php
│
├── includes/
│ ├── header.php
│ ├── footer.php
│ └── functions.php
│
├── assets/
│ ├── css/
│ │ └── styles.css
│ ├── js/
│ │ └── scripts.js
│ └── images/
│
└── vendor/
└── (Bootstrap and other libraries)
3. Layout Based Design with Bootstrap 5
Header (includes/header.php)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/styles.css">
<title>Smart Attendance System</title>
</head>
<body>
<div class="container">
<header class="my-4">
<h1>Smart Attendance System</h1>
</header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.php">Home</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="attendance.php">Attendance</a>
</li>
<li class="nav-item">
<a class="nav-link" href="classes.php">Classes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="notifications.php">Notifications</a>
</li>
<li class="nav-item">
<a class="nav-link" href="feedback.php">Feedback</a>
</li>
<li class="nav-item">
<a class="nav-link" href="reports.php">Reports</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.php">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="register.php">Register</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="my-4">
Footer (includes/footer.php)
</main>
<footer class="text-center my-4">
<p>© 2023 Smart Attendance System. All rights reserved.</p>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
4. PHP Code for User Authentication
Registration (public/register.php)
<?php
require '../config/db.php';
require '../includes/header.php';
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$username = $_POST['username'];
$email = $_POST['email'];
$password = password_hash($_POST['password'], PASSWORD_DEFAULT);
$role = $_POST['role'];
$stmt = $conn->prepare("INSERT INTO users (username, email, password, role) VALUES (?, ?, ?, ?)");
$stmt->bind_param("ssss", $username, $email, $password, $role);
$stmt->execute();
$stmt->close();
header("Location: login.php");
}
?>
<form method="POST" action="">
<div class="mb-3">
<label for="username" class="form-label">Username</label>
<input type="text" class="form-control" id="username" name="username" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<div class="mb-3">
<label for="role" class="form-label">Role</label>
<select class="form-select" id="role" name="role">
<option value="student">Student</option>
<option value="teacher">Teacher</option>
<option value="admin">Admin</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Register</button>
</form>
<?php require '../includes/footer.php'; ?>
Login (public/login.php)
<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$username = $_POST['username'];
$password = $_POST['password'];
$stmt = $conn->prepare("SELECT * FROM users WHERE username = ?");
$stmt->bind_param("s", $username);
$stmt->execute();
$result = $stmt->get_result();
$user = $result->fetch_assoc();
if ($user && password_verify($password, $user['password'])) {
$_SESSION['user_id'] = $user['id'];
$_SESSION['role'] = $user['role'];
header("Location: dashboard.php");
} else {
echo "Invalid credentials.";
}
}
?>
<form method="POST" action="">
<div class="mb-3">
<label for="username" class="form-label">Username</label>
<input type="text" class="form-control" id="username" name="username" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
<?php require '../includes/footer.php'; ?>
5. Additional PHP Scripts
Dashboard (public/dashboard.php)
<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$user_id = $_SESSION['user_id'];
$stmt = $conn->prepare("SELECT * FROM users WHERE id = ?");
$stmt->bind_param("i", $user_id);
$stmt->execute();
$result = $stmt->get_result();
$user = $result->fetch_assoc();
?>
<h2>Welcome, <?php echo $user['username']; ?></h2>
<p>Your role: <?php echo ucfirst($user['role']); ?></p>
<?php require '../includes/footer.php'; ?>
Class Management (public/classes.php)
<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id']) || $_SESSION['role'] !== 'admin') {
header("Location: login.php");
exit();
}
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$class_name = $_POST['class_name'];
$subject = $_POST['subject'];
$schedule_time = $_POST['schedule_time'];
$location = $_POST['location'];
$stmt = $conn->prepare("INSERT INTO classes (class_name, subject, schedule_time, location) VALUES (?, ?, ?, ?)");
$stmt->bind_param("ssss", $class_name, $subject, $schedule_time, $location);
$stmt->execute();
$stmt->close();
header("Location: classes.php");
}
?>
<h2>Manage Classes</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="class_name" class="form-label">Class Name</label>
<input type="text" class="form-control" id="class_name" name="class_name" required>
</div>
<div class="mb-3">
<label for="subject" class="form-label">Subject</label>
<input type="text" class="form-control" id="subject" name="subject" required>
</div>
<div class="mb-3">
<label for="schedule_time" class="form-label">Schedule Time</label>
<input type="time" class="form-control" id="schedule_time" name="schedule_time" required>
</div>
<div class="mb-3">
<label for="location" class="form-label">Location</label>
<input type="text" class="form-control" id="location" name="location" required>
</div>
<button type="submit" class="btn btn-primary">Add Class</button>
</form>
<?php require '../includes/footer.php'; ?>
Attendance Management (public/attendance.php)
<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id']) || $_SESSION['role'] !== 'teacher') {
header("Location: login.php");
exit();
}
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$student_id = $_POST['student_id'];
$class_id = $_POST['class_id'];
$status = $_POST['status'];
$stmt = $conn->prepare("INSERT INTO attendance (student_id, class_id, status) VALUES (?, ?, ?)");
$stmt->bind_param("iis", $student_id, $class_id, $status);
$stmt->execute();
$stmt->close();
header("Location: attendance.php");
}
// Fetch students and classes for the form
$stmt = $conn->prepare("SELECT * FROM users WHERE role = 'student'");
$stmt->execute();
$result = $stmt->get_result();
$students = $result->fetch_all(MYSQLI_ASSOC);
$stmt = $conn->prepare("SELECT * FROM classes");
$stmt->execute();
$result = $stmt->get_result();
$classes = $result->fetch_all(MYSQLI_ASSOC);
?>
<h2>Record Attendance</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="student_id" class="form-label">Student</label>
<select class="form-select" id="student_id" name="student_id" required>
<?php foreach ($students as $student): ?>
<option value="<?php echo $student['id']; ?>"><?php echo $student['username']; ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="mb-3">
<label for="class_id" class="form-label">Class</label>
<select class="form-select" id="class_id" name="class_id" required>
<?php foreach ($classes as $class): ?>
<option value="<?php echo $class['id']; ?>"><?php echo $class['class_name']; ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="mb-3">
<label for="status" class="form-label">Status</label>
<select class="form-select" id="status" name="status" required>
<option value="present">Present</option>
<option value="absent">Absent</option>
<option value="late">Late</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Record Attendance</button>
</form>
<?php require '../includes/footer.php'; ?>
Feedback Management (public/feedback.php)
<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$course_id = $_POST['course_id'];
$user_id = $_SESSION['user_id'];
$rating = $_POST['rating'];
$comments = $_POST['comments'];
$stmt = $conn->prepare("INSERT INTO feedback (course_id, user_id, rating, comments) VALUES (?, ?, ?, ?)");
$stmt->bind_param("iiis", $course_id, $user_id, $rating, $comments);
$stmt->execute();
$stmt->close();
header("Location: feedback.php");
}
$stmt = $conn->prepare("SELECT * FROM courses");
$stmt->execute();
$result = $stmt->get_result();
$courses = $result->fetch_all(MYSQLI_ASSOC);
?>
<h2>Leave Feedback</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="course_id" class="form-label">Select Course</label>
<select class="form-select" id="course_id" name="course_id" required>
<?php foreach ($courses as $course): ?>
<option value="<?php echo $course['id']; ?>"><?php echo $course['title']; ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="mb-3">
<label for="rating" class="form-label">Rating</label>
<select class="form-select" id="rating" name="rating" required>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</div>
<div class="mb-3">
<label for="comments" class="form-label">Comments</label>
<textarea class="form-control" id="comments" name="comments" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit Feedback</button>
</form>
<h3>Existing Feedback</h3>
<table class="table">
<thead>
<tr>
<th>Course</th>
<th>User</th>
<th>Rating</th>
<th>Comments</th>
</tr>
</thead>
<tbody>
<?php
$stmt = $conn->prepare("SELECT feedback.*, courses.title AS course_title, users.username AS user_name FROM feedback JOIN courses ON feedback.course_id = courses.id JOIN users ON feedback.user_id = users.id");
$stmt->execute();
$result = $stmt->get_result();
$feedbacks = $result->fetch_all(MYSQLI_ASSOC);
foreach ($feedbacks as $feedback): ?>
<tr>
<td><?php echo $feedback['course_title']; ?></td>
<td><?php echo $feedback['user_name']; ?></td>
<td><?php echo $feedback['rating']; ?></td>
<td><?php echo $feedback['comments']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php require '../includes/footer.php'; ?>
6. Additional Features to Consider
User Profiles: Allow users to edit their profiles and manage their settings.
Integration with LMS: Integrate with existing Learning Management Systems for seamless course management.
Mobile App: Develop a mobile application for easier access to courses and discussions.
7. Security Measures
Data Validation: Ensure all user inputs are validated to prevent SQL injection and XSS attacks.
Password Security: Use strong hashing algorithms for storing passwords.
Session Security: Implement secure session management practices to protect user sessions.
8. Testing and Deployment
Unit Testing: Conduct unit tests for individual components to ensure they function correctly.
Integration Testing: Test the integration of different modules to ensure they work together seamlessly.
Deployment: Choose a reliable hosting provider and deploy the application, ensuring all configurations are optimized for performance.
9. Documentation
User Documentation: Create a user manual to guide users through the platform's features and functionalities.
Developer Documentation: Document the codebase and architecture for future reference and maintenance.
10. Future Enhancements
AI-Powered Insights: Implement machine learning algorithms to provide insights into student performance and engagement.
Mobile Notifications: Enhance the notification system to send mobile alerts for upcoming classes and assignments.
Custom Reports: Allow users to generate custom reports based on specific criteria.
This structured approach will help you build a comprehensive Virtual Classroom Platform that meets user needs and adapts to future requirements.