Problem Statement
Describe the basic CRUD operations in PHP using a database.
Explanation
CRUD stands for Create, Read, Update, and Delete. Create inserts new records, Read retrieves them, Update modifies existing ones, and Delete removes them. All four are performed using SQL queries with secure data handling practices.
