- This Project is about managing the student records like (Creating a new ID , Updating excisting ID , Deleting the excisting ID).
- In this management system records cannot be duplicate (Creating same id , Can't update or delete if the id is unavailable).
- This is the Backend tool for managing the student details.
- The page looks like
- Install the XAMPP server.
- Open the application folder / www and drop the ZIP file.
- Run the apache and mysql server
- OPen the defualt browser and type localhost.
- Open MYSQL or SQL in Cmd / Terminal and start SQL or MYSQL DB.
- Run the Commands as followed:
- create database Students;
- use Students;
- create table records(roll int , name varchar(30) , dept varchar(30));
- Run the index file to add , delete , update the records.