The Blood Bank Donor Management System (BBDMS) phpproject is a web-based application designed to facilitate the management of blood donors, blood banks, and hospital requests. The system helps in registering donors, tracking blood inventory, and coordinating blood requests between hospitals and blood banks. It is built using PHP, MySQL, HTML, CSS, and JavaScript.
- Donor registration and login
- Blood inventory management
- Hospital blood request system
- Donor donation history tracking
- Automated email notifications for donors and hospitals
- Responsive design for mobile, tablet, and desktop devices
-
XAMPP (or any local server environment supporting PHP and MySQL):
- Download and install XAMPP from here.
-
Git (optional, for cloning the repository):
- Download and install Git from here.
-
Web Browser (Google Chrome, Mozilla Firefox, Safari, etc.)
-
Download or clone the phpproject project from the repository:
Option 1: Download the ZIP
- Download the ZIP file from the repository.
- Extract the ZIP file, and you will get a folder named
bbdms.
Option 2: Clone using Git
- Run the following command in your terminal to clone the repository:
git clone https://github.com/RajaCS5x/phpproject.git
- After downloading or extracting the
bbdmsfolder, move the entire folder to thehtdocsdirectory inside your XAMPP installation folder. By default, it is located at:C:\xampp\htdocs\
- Open XAMPP Control Panel.
- Start the Apache and MySQL modules.
- Open your browser and navigate to phpMyAdmin:
bash Copy code http://localhost/phpmyadmin Create a new database for the project:
Click on New in the sidebar. Name the database (e.g., bbdms_db). Click Create. Import the database structure:
In the newly created database, click on the Import tab. Choose the bbdms.sql file from the database folder inside the bbdms project folder. Click Go to import the database structure and data.
Open the config.php file inside the bbdms folder. Update the database connection details as needed: php Copy code $servername = "localhost"; $username = "root"; // Default XAMPP username $password = ""; // Default XAMPP password (leave empty) $dbname = "bbdms_db"; // Name of the database you created
Open your web browser and go to:
bash Copy code http://localhost/bbdms You will be directed to the Blood Bank Donor Management System homepage.
This project is licensed under the MIT License. See the LICENSE file for more details.