A lightweight, full-stack User Management Application featuring a completely decoupled architecture where the frontend interface and backend database API communicate via asynchronous HTTP transactions.
- Frontend: React, React Router, Axios (for async REST API requests)[span_2]
- Backend: Raw PHP (Custom entry-point routing and CORS middleware processing)
- Database: MySQL handled securely via PDO (PHP Data Objects) Prepared Statements
EmployeeManagement/
├── react-crud-frontend/ # Frontend Client (React SPA Application)
│ ├── public/ # Public assets & index.html
│ └── src/ # Components (ListUser.js, EditUser.js, App.js)
│
├── react-crud-backend/ # Backend REST API (PHP Environment)
│ ├── DbConnect.php # Unified PDO database connection configuration
│ └── index.php # API Routing switchboard & CORS safety headers
│
└── screenshots/ # UI Display snapshots for GitHub repository