This section allows the admin to add new employee details.
This section displays a list of added employees along with options to update or delete their details.
This is a simple MySQL-based CRUD (Create, Read, Update, Delete) application that allows an admin to manage employee details. The application provides functionality to add, view, update, and delete employee records.
- Add Employee: Admin can add new employee details.
- View Employees: Display a list of employees with their details.
- Update Employee: Modify existing employee records.
- Delete Employee: Remove an employee from the database.
- MySQL Server
- PHP (if using PHP for backend processing)
- Web Server (e.g., Apache, Nginx) if running as a web application
- Clone the repository:
git clone <repository-url>
- Import the database:
- Open MySQL and create a database:
CREATE DATABASE employee_db;
- Import the provided SQL file:
mysql -u root -p employee_db < database.sql
- Open MySQL and create a database:
- Configure database connection in your application:
$conn = new mysqli('localhost', 'root', '', 'employee_db');
- Start your server and access the application.
- Navigate to the Add Employee section to insert a new employee.
- View all employees in the Show Employees section.
- Use the edit and delete options to modify or remove employee records.
- Implement user authentication.
- Add search and filter functionality.
- Improve UI design.
This project is open-source. Feel free to modify and use it as needed.
damiancodes