The Active Record Class method ________ is used to delete records from the database.
- delete()
- destroy()
- erase()
- remove()
The correct method to delete records from the database using the Active Record Class in CodeIgniter is delete(). This method allows you to specify the table and the criteria for deletion.
Loading...
Related Quiz
- When configuring a CodeIgniter application for a financial service, the first step in enhancing security should focus on ________.
- What is the purpose of the 'composer.json' file in a CodeIgniter project?
- Which feature in CodeIgniter allows you to track the performance of database queries?
- Which feature in CodeIgniter helps to filter input data to prevent SQL injection?
- In a CodeIgniter project, a custom encryption library is introduced. To ensure seamless integration, the developer must consider ________.