What is CRUD?
The acronym CRUD refers to the four basic functions that need to be implemented in a relational database
application or web script to consider it complete. Each letter in the acronym can be mapped
to a standard SQL statement:
- Create = INSERT
- Read = SELECT
- Update = UPDATE
- Delete = DELETE
Other 'basic' operations such as ADD, ALTER, CHANGE, DROP, etc... are also handled by phpMyCRUD making it a
complete MySQL database management solution.