To create a custom library in CodeIgniter, the class file must be placed in the ________ directory.
- application/config
- application/core
- application/helpers
- application/libraries
In CodeIgniter, custom libraries should be placed in the 'application/libraries' directory. This is the default location where CodeIgniter looks for user-created libraries. Placing it elsewhere may lead to issues in loading the library.
Loading...
Related Quiz
- What role does escaping user inputs play in securing a database against SQL injection?
- How can database queries be optimized in CodeIgniter using configuration settings?
- What is the primary purpose of database migrations in web development?
- ________ should be used in CodeIgniter to securely handle errors containing sensitive information.
- Describe a scenario where creating a custom Helper in CodeIgniter would be beneficial over using built-in Helpers.