CRUD with PHP and MySQL in Localhost

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:

  1. Design all of templates.
  2. Create/Insert Operation
  3. Read/View Operation
  4. Update/Edit Operation
  5. Delete/Drop Operation

Bonus: Single View/Delete Operation.

Leave a Comment

Your email address will not be published. Required fields are marked *