Creating a simple CRUD application is a good way to start as a minor project. You get to learn the basic operations that we perform on the data stored in the database. CRUD stands for CREATE, READ, UPDATE, and DELETE. The operations are performed on almost every website.
About the Application
It’s a small and simple application that performs all the basic CRUD operations. The purpose of creating this small project is to learn “how to create a CRUD application” and understand how it works.
Software Requirement
- XAMPP Server
- Code Editor: Visual Studio Code(VS Code)
Language Used
- Frontend – HTML, CSS ( Bootstrap )
- programming Language – PHP
- Database – MySQL
How to run the application
- Download the project and unzip the folder in the root directory xampp/htdocs.
- Open the xampp control panel and start the Apache and MySQL service
- Configure the database
- Open phpmyadmin on your browser( localhost/phpmyadmin/ )
- create a new database “php_crud”
- Import the database php_crud.sql (available inside the php_crud/database folder)
Now, to run the application, open your browser and type “localhost/php_crud“
You can download this project for free: PHP CRUD App
That’s it! You’re all set!
Want to create your own CRUD application, then read this post on how to create a CRUD Application in PHP using MySQL.