A developer needs to ensure session data is available only during the current browser session. This can be achieved by setting ________ in CodeIgniter's session configuration.
- session_destroy_on_exit
- session_expire_on_close
- session_regenerate_on_close
- session_renew_on_reload
To ensure session data is available only during the current browser session in CodeIgniter, set the session_expire_on_close configuration. This causes the session to expire when the browser is closed.
Loading...
Related Quiz
- To enhance the performance of an application sending out frequent transactional emails, the Email Class can be integrated with ________.
- In CodeIgniter, Helpers are not classes but a collection of ________.
- Which function in CodeIgniter starts a database transaction?
- In MVC, what mechanism is typically used for Views to display data provided by Models?
- When a CodeIgniter application's performance degrades, the primary debugging approach should focus on ______.