A simple and professional CRUD (Create, Read, Update, Delete) web application for student registration built using HTML, CSS, PHP, and MySQL.
- ✅ Register a student (Name, Email, Age)
- ✅ View all registered students
- ✅ Edit student details
- ✅ Delete student records
- ✅ Stylish UI with responsive design
- ✅ Mobile-friendly and clean layout
- Frontend: HTML5, CSS3 (Custom + Responsive Design)
- Backend: PHP
- Database: MySQL
- Server: Apache (e.g., XAMPP / WAMP / MAMP)
git clone https://github.com/your-username/student-registration-system.git
- For XAMPP, move the folder to:
C:\xampp\htdocs\student-registration-system
-
Open phpMyAdmin at:
http://localhost/phpmyadmin
-
Create a database named:
test
-
Run the SQL below in the SQL tab:
CREATE TABLE registration (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100) NOT NULL,
email VARCHAR(100) NOT NULL,
age INT NOT NULL
);
- Navigate to:
http://localhost/student-registration-system/index.html
/student-registration-system/
├── index.html # Registration form
├── connect.php # Insert logic
├── view.php # Display all records
├── edit.php # Edit student form
├── delete.php # Delete logic
├── style.css # Main CSS
├── view.css # Styling for view table
└── README.md # This file
Created by Prashanth
This project is open-source under the MIT License.