In CodeIgniter, the configuration setting $config['sess_ ________'] determines where session data is stored.
- driver
- handler
- path
- storage
The correct configuration setting is $config['sess_driver'], which determines the storage driver for session data in CodeIgniter. This setting specifies whether session data should be stored in the database, files, or other storage mechanisms.
Loading...
Related Quiz
- A common method to sanitize user input and prevent XSS is using ________ encoding.
- How does exception handling contribute to a program's robustness?
- To improve code readability and reusability, a developer decides to move frequently used HTML structures to a Helper. This process is known as ________.
- How does CodeIgniter's 'show_error()' function differ from 'show_404()'?
- When sending an email using the Email Class, which parameter is essential to specify the email subject?