Databsereport
Databsereport
Introduction
This project titled "Instructor Management System" has been developed using PHP and MySQL under the XAMPP
environment. The system is designed to add, search, update, and delete instructor records, and provides a simple interface for
managing instructor data effectively.
Technologies Used
• Frontend: HTML, CSS (with Bootstrap Styling)
• Backend: PHP
• Database: MySQL (college_db)
Functional Features
1. Add Instructor
The system includes a form to enter instructor name, email, and subject. Upon submission, this data is inserted into the
MySQL database.
2. View Instructors
All existing instructors are displayed in a table format with options to update or delete.
3. Update Instructor
Each row has an "Update" button that allows real-time editing of instructor information.
4. Delete Instructor
Instructors can be removed from the database via the "Delete" button.
5. Search
The system supports searching instructors by name or ID.
Screenshot of Interface
Figure 1: Instructor Management System Interface

Database Structure
Database Name: college_db
Table Name: instructors
SQL Structure:
CREATE TABLE instructors (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100),
email VARCHAR(100),
subject VARCHAR(100)
);
Conclusion
The Instructor Management System is a simplified but effective solution for managing instructor records using PHP and
MySQL. It provides essential CRUD functionalities, and is ideal for educational projects or internal administrative tools.