CRUD stands for Create, Read, Update and Delete. In Web Development, we really doing this 4 types operation. But it’s can be done by different ways, also possible to do it based on different condition. But we actually do this 4 types operation or CRUD operation in any Web development project. So it’s important to know briefly about the CRUD. If we can learn the CRUD well, most probably you can be a good Web Developer, it’s then the matter for the time being.
We can call this CRUD operation in different name, possibly this can be those:
C = CREATE/INSERT/ADD
R = READ/VIEW
U = UPDATE/EDIT
D = DELETE/DROP
Let’s learn all of those step by step
Possible couples of step will be:
- Design all of templates.
- Create/Insert Operation
- Read/View Operation
- Update/Edit Operation
- Delete/Drop Operation
Bonus: Single View/Delete Operation.