Creating a Blood Bank Management 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 Blood Bank Management System is a comprehensive web application designed to streamline the processes involved in blood donation, inventory management, and distribution. This platform serves as a bridge between donors, hospitals, and blood bank staff, ensuring efficient management of blood resources. It provides functionalities for user management, event organization, blood donation tracking, and compliance monitoring, all aimed at enhancing the overall efficiency of blood donation operations.

Project Objectives

  • To create a secure and user-friendly platform for managing blood donors, donations, and inventory.
  • To implement a robust database schema that supports various functionalities such as user roles, donation events, and blood testing.
  • To facilitate real-time tracking of blood inventory and distribution to hospitals.
  • To ensure compliance with health regulations through a dedicated compliance management module.
  • To provide a feedback mechanism for donors to improve service quality and donor experience.
  • To develop a notification system to keep users informed about important updates and events.

Project Modules

  1. User Management: Manages user registration, authentication, and role assignments (admin, staff, donor, hospital).
  2. Donor Management: Handles donor information, eligibility status, and donation history.
  3. Donation Events: Organizes and manages blood donation events, including event details and scheduling.
  4. Blood Donations: Tracks individual blood donations linked to donors and events, including blood type and donation date.
  5. Blood Inventory Management: Monitors blood types, quantities, expiration dates, and storage conditions.
  6. Blood Testing: Records testing results for blood donations to ensure compliance with health standards.
  7. Blood Distribution: Manages requests and distribution of blood to hospitals, including tracking delivery dates.
  8. Notifications: Sends alerts and messages to users regarding important updates and events.
  9. Feedback System: Collects donor feedback and ratings to enhance service quality.
  10. Compliance Management: Ensures adherence to health regulations and standards through a dedicated compliance module.

1. MySQL Database Schema


CREATE DATABASE blood_bank_management;
USE blood_bank_management;
-- 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', 'staff', 'donor', 'hospital') DEFAULT 'donor',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Table for donors
CREATE TABLE donors (
id INT AUTO_INCREMENT PRIMARY KEY,
user_id INT NOT NULL,
first_name VARCHAR(50) NOT NULL,
last_name VARCHAR(50) NOT NULL,
date_of_birth DATE NOT NULL,
gender ENUM('male', 'female', 'other') NOT NULL,
contact_number VARCHAR(15),
address VARCHAR(255),
medical_history TEXT,
donation_history TEXT,
eligibility_status ENUM('eligible', 'not_eligible') DEFAULT 'eligible',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
);
-- Table for blood donation events
CREATE TABLE donation_events (
id INT AUTO_INCREMENT PRIMARY KEY,
event_name VARCHAR(100) NOT NULL,
location VARCHAR(255) NOT NULL,
event_date DATETIME NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Table for blood donations
CREATE TABLE blood_donations (
id INT AUTO_INCREMENT PRIMARY KEY,
donor_id INT NOT NULL,
event_id INT NOT NULL,
donation_date DATETIME NOT NULL,
blood_type ENUM('A+', 'A-', 'B+', 'B-', 'AB+', 'AB-', 'O+', 'O-') NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (donor_id) REFERENCES donors(id) ON DELETE CASCADE,
FOREIGN KEY (event_id) REFERENCES donation_events(id) ON DELETE CASCADE
);
-- Table for blood inventory
CREATE TABLE blood_inventory (
id INT AUTO_INCREMENT PRIMARY KEY,
blood_type ENUM('A+', 'A-', 'B+', 'B-', 'AB+', 'AB-', 'O+', 'O-') NOT NULL,
quantity INT NOT NULL,
expiration_date DATE NOT NULL,
storage_condition VARCHAR(255),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Table for blood testing
CREATE TABLE blood_testing (
id INT AUTO_INCREMENT PRIMARY KEY,
donation_id INT NOT NULL,
test_date DATE NOT NULL,
test_results TEXT,
compliance_status ENUM('compliant', 'non_compliant') DEFAULT 'compliant',
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (donation_id) REFERENCES blood_donations(id) ON DELETE CASCADE
);
-- Table for blood distribution
CREATE TABLE blood_distribution (
id INT AUTO_INCREMENT PRIMARY KEY,
blood_type ENUM('A+', 'A-', 'B+', 'B-', 'AB+', 'AB-', 'O+', 'O-') NOT NULL,
quantity INT NOT NULL,
hospital_name VARCHAR(255) NOT NULL,
request_date DATE NOT NULL,
delivery_date DATE,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- 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,
donor_id INT NOT NULL,
comments TEXT,
rating INT CHECK (rating >= 1 AND rating <= 5),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (donor_id) REFERENCES donors(id) ON DELETE CASCADE
);
-- Table for compliance
CREATE TABLE compliance (
id INT AUTO_INCREMENT PRIMARY KEY,
regulation VARCHAR(255) NOT NULL,
description TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

2. File and Folder Structure


blood_bank_management_system/

├── config/
│ └── db.php

├── public/
│ ├── index.php
│ ├── login.php
│ ├── register.php
│ ├── dashboard.php
│ ├── donor_management.php
│ ├── donation_events.php
│ ├── blood_inventory.php
│ ├── blood_testing.php
│ ├── blood_distribution.php
│ ├── notifications.php
│ ├── feedback.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>Blood Bank Management System</title>
</head>
<body>
<div class="container">
<header class="my-4">
<h1>Blood Bank Management 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="donor_management.php">Donor Management</a>
</li>
<li class="nav-item">
<a class="nav-link" href="donation_events.php">Donation Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blood_inventory.php">Blood Inventory</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blood_testing.php">Blood Testing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blood_distribution.php">Blood Distribution</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="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 Blood Bank Management 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="donor">Donor</option>
<option value="staff">Blood Bank Staff</option>
<option value="hospital">Hospital</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'; ?>

Donor Management (public/donor_management.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') {
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$date_of_birth = $_POST['date_of_birth'];
$gender = $_POST['gender'];
$contact_number = $_POST['contact_number'];
$address = $_POST['address'];
$medical_history = $_POST['medical_history'];
$stmt = $conn->prepare("INSERT INTO donors (first_name, last_name, date_of_birth, gender, contact_number, address, medical_history, user_id) VALUES (?, ?, ?, ?, ?, ?, ?, ?)");
$stmt->bind_param("sssssssi", $first_name, $last_name, $date_of_birth, $gender, $contact_number, $address, $medical_history, $_SESSION['user_id']);
$stmt->execute();
$stmt->close();
header("Location: donor_management.php");
}
?>
<h2>Manage Donors</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="first_name" class="form-label">First Name</label>
<input type="text" class="form-control" id="first_name" name="first_name" required>
</div>
<div class="mb-3">
<label for="last_name" class="form-label">Last Name</label>
<input type="text" class="form-control" id="last_name" name="last_name" required>
</div>
<div class="mb-3">
<label for="date_of_birth" class="form-label">Date of Birth</label>
<input type="date" class="form-control" id="date_of_birth" name="date_of_birth" required>
</div>
<div class="mb-3">
<label for="gender" class="form-label">Gender</label>
<select class="form-select" id="gender" name="gender" required>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-3">
<label for="contact_number" class="form-label">Contact Number</label>
<input type="text" class="form-control" id="contact_number" name="contact_number">
</div>
<div class="mb-3">
<label for="address" class="form-label">Address</label>
<textarea class="form-control" id="address" name="address"></textarea>
</div>
<div class="mb-3">
<label for="medical_history" class="form-label">Medical History</label>
<textarea class="form-control" id="medical_history" name="medical_history"></textarea>
</div>
<button type="submit" class="btn btn-primary">Add Donor</button>
</form>
<?php require '../includes/footer.php'; ?>

Donation Events Management (public/donation_events.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') {
$event_name = $_POST['event_name'];
$location = $_POST['location'];
$event_date = $_POST['event_date'];
$stmt = $conn->prepare("INSERT INTO donation_events (event_name, location, event_date) VALUES (?, ?, ?)");
$stmt->bind_param("sss", $event_name, $location, $event_date);
$stmt->execute();
$stmt->close();
header("Location: donation_events.php");
}
?>
<h2>Manage Donation Events</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="event_name" class="form-label">Event Name</label>
<input type="text" class="form-control" id="event_name" name="event_name" 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>
<div class="mb-3">
<label for="event_date" class="form-label">Event Date</label>
<input type="datetime-local" class="form-control" id="event_date" name="event_date" required>
</div>
<button type="submit" class="btn btn-primary">Add Event</button>
</form>
<?php require '../includes/footer.php'; ?>

Blood Inventory Management (public/blood_inventory.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') {
$blood_type = $_POST['blood_type'];
$quantity = $_POST['quantity'];
$expiration_date = $_POST['expiration_date'];
$storage_condition = $_POST['storage_condition'];
$stmt = $conn->prepare("INSERT INTO blood_inventory (blood_type, quantity, expiration_date, storage_condition) VALUES (?, ?, ?, ?)");
$stmt->bind_param("siss", $blood_type, $quantity, $expiration_date, $storage_condition);
$stmt->execute();
$stmt->close();
header("Location: blood_inventory.php");
}
?>
<h2>Manage Blood Inventory</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="blood_type" class="form-label">Blood Type</label>
<select class="form-select" id="blood_type" name="blood_type" required>
<option value="A+">A+</option>
<option value="A-">A-</option>
<option value="B+">B+</option>
<option value="B-">B-</option>
<option value="AB+">AB+</option>
<option value="AB-">AB-</option>
<option value="O+">O+</option>
<option value="O-">O-</option>
</select>
</div>
<div class="mb-3">
<label for="quantity" class="form-label">Quantity</label>
<input type="number" class="form-control" id="quantity" name="quantity" required>
</div>
<div class="mb-3">
<label for="expiration_date" class="form-label">Expiration Date</label>
<input type="date" class="form-control" id="expiration_date" name="expiration_date" required>
</div>
<div class="mb-3">
<label for="storage_condition" class="form-label">Storage Condition</label>
<input type="text" class="form-control" id="storage_condition" name="storage_condition" required>
</div>
<button type="submit" class="btn btn-primary">Add Blood Inventory</button>
</form>
<?php require '../includes/footer.php'; ?>

Blood Testing Management (public/blood_testing.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') {
$donation_id = $_POST['donation_id'];
$test_date = $_POST['test_date'];
$test_results = $_POST['test_results'];
$compliance_status = $_POST['compliance_status'];
$stmt = $conn->prepare("INSERT INTO blood_testing (donation_id, test_date, test_results, compliance_status) VALUES (?, ?, ?, ?)");
$stmt->bind_param("isss", $donation_id, $test_date, $test_results, $compliance_status);
$stmt->execute();
$stmt->close();
header("Location: blood_testing.php");
}
$stmt = $conn->prepare("SELECT * FROM blood_donations");
$stmt->execute();
$result = $stmt->get_result();
$donations = $result->fetch_all(MYSQLI_ASSOC);
?>
<h2>Manage Blood Testing</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="donation_id" class="form-label">Donation</label>
<select class="form-select" id="donation_id" name="donation_id" required>
<?php foreach ($donations as $donation): ?>
<option value="<?php echo $donation['id']; ?>"><?php echo $donation['blood_type'] . ' - ' . $donation['donation_date']; ?></option>
<?php endforeach; ?>
</select>
</div>
<div class="mb-3">
<label for="test_date" class="form-label">Test Date</label>
<input type="date" class="form-control" id="test_date" name="test_date" required>
</div>
<div class="mb-3">
<label for="test_results" class="form-label">Test Results</label>
<textarea class="form-control" id="test_results" name="test_results" required></textarea>
</div>
<div class="mb-3">
<label for="compliance_status" class="form-label">Compliance Status</label>
<select class="form-select" id="compliance_status" name="compliance_status" required>
<option value="compliant">Compliant</option>
<option value="non_compliant">Non-Compliant</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Add Test Result</button>
</form>
<?php require '../includes/footer.php'; ?>

Blood Distribution Management (public/blood_distribution.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') {
$blood_type = $_POST['blood_type'];
$quantity = $_POST['quantity'];
$hospital_name = $_POST['hospital_name'];
$request_date = $_POST['request_date'];
$delivery_date = $_POST['delivery_date'];
$stmt = $conn-> prepare("INSERT INTO blood_distribution (blood_type, quantity, hospital_name, request_date, delivery_date) VALUES (?, ?, ?, ?, ?)");
$stmt->bind_param("sisss", $blood_type, $quantity, $hospital_name, $request_date, $delivery_date);
$stmt->execute();
$stmt->close();
header("Location: blood_distribution.php");
}
?>
<h2>Manage Blood Distribution</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="blood_type" class="form-label">Blood Type</label>
<select class="form-select" id="blood_type" name="blood_type" required>
<option value="A+">A+</option>
<option value="A-">A-</option>
<option value="B+">B+</option>
<option value="B-">B-</option>
<option value="AB+">AB+</option>
<option value="AB-">AB-</option>
<option value="O+">O+</option>
<option value="O-">O-</option>
</select>
</div>
<div class="mb-3">
<label for="quantity" class="form-label">Quantity</label>
<input type="number" class="form-control" id="quantity" name="quantity" required>
</div>
<div class="mb-3">
<label for="hospital_name" class="form-label">Hospital Name</label>
<input type="text" class="form-control" id="hospital_name" name="hospital_name" required>
</div>
<div class="mb-3">
<label for="request_date" class="form-label">Request Date</label>
<input type="date" class="form-control" id="request_date" name="request_date" required>
</div>
<div class="mb-3">
<label for="delivery_date" class="form-label">Delivery Date</label>
<input type="date" class="form-control" id="delivery_date" name="delivery_date">
</div>
<button type="submit" class="btn btn-primary">Add Distribution</button>
</form>
<?php require '../includes/footer.php'; ?>

Notifications Management (public/notifications.php)


<?php
session_start();
require '../config/db.php';
require '../includes/header.php';
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit();
}
$stmt = $conn->prepare("SELECT * FROM notifications WHERE user_id = ? ORDER BY created_at DESC");
$stmt->bind_param("i", $_SESSION['user_id']);
$stmt->execute();
$result = $stmt->get_result();
$notifications = $result->fetch_all(MYSQLI_ASSOC);
?>
<h2>Notifications</h2>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Message</th>
<th>Status</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<?php foreach ($notifications as $notification): ?>
<tr>
<td><?php echo $notification['id']; ?></td>
<td><?php echo $notification['message']; ?></td>
<td><?php echo $notification['is_read'] ? 'Read' : 'Unread'; ?></td>
<td><?php echo $notification['created_at']; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?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') {
$donor_id = $_POST['donor_id'];
$comments = $_POST['comments'];
$rating = $_POST['rating'];
$stmt = $conn->prepare("INSERT INTO feedback (donor_id, comments, rating) VALUES (?, ?, ?)");
$stmt->bind_param("ssi", $donor_id, $comments, $rating);
$stmt->execute();
$stmt->close();
header("Location: feedback.php");
}
$stmt = $conn->prepare("SELECT * FROM donors");
$stmt->execute();
$result = $stmt->get_result();
$donors = $result->fetch_all(MYSQLI_ASSOC);
?>
<h2>Provide Feedback</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="donor_id" class=" form-label">Donor</label>
<select class="form-select" id="donor_id" name="donor_id" required>
<?php foreach ($donors as $donor): ?>
<option value="<?php echo $donor['id']; ?>"><?php echo $donor['first_name'] . ' ' . $donor['last_name']; ?></option>
<?php endforeach; ?>
</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>
<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>
<button type="submit" class="btn btn-primary">Submit Feedback</button>
</form>
<?php require '../includes/footer.php'; ?>

Compliance Management (public/compliance.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') {
$regulation = $_POST['regulation'];
$description = $_POST['description'];
$stmt = $conn->prepare("INSERT INTO compliance (regulation, description) VALUES (?, ?)");
$stmt->bind_param("ss", $regulation, $description);
$stmt->execute();
$stmt->close();
header("Location: compliance.php");
}
?>
<h2>Manage Compliance Regulations</h2>
<form method="POST" action="">
<div class="mb-3">
<label for="regulation" class="form-label">Regulation</label>
<input type="text" class="form-control" id="regulation" name="regulation" required>
</div>
<div class="mb-3">
<label for="description" class="form-label">Description</label>
<textarea class="form-control" id="description" name="description" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Add Regulation</button>
</form>
<?php require '../includes/footer.php'; ?>

6. Additional Features to Consider

User Profiles: Allow users to edit their profiles and manage their settings.

Donor Eligibility Screening: Implement a questionnaire to assess donor eligibility.

Event Management: Create a calendar view for upcoming donation events.

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 Recommendations: Implement machine learning algorithms to provide personalized recommendations for donors.

Community Features: Create forums or discussion boards for blood bank staff to share insights and experiences.

Integration with Other Systems: Consider integrating with existing health information systems for a more comprehensive solution.

This structured approach will help you build a robust Blood Bank Management System that meets user needs and adapts to future requirements.