CRUD is an shortening for Create, Read, Update and Delete. PHP CRUD operations are basic data manipulation for database. In this tutorial we’ll create a simple PHP application to perform all these operations on a MySQL database table at one place.
1. Database Setup
CREATE DATABASE crud_app;
CREATE TABLE users
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR (100)
email VARCHAR (100)
2: db.php (Database Connection)

3. style.css



4. index.php (Read/Display)

5. create.php (Create Form)

6. edit.php (Update Form)

7: delete.php (Delete User)
