I have read in the cake book that Session in view uses SessionHelper, but that helper doesn't have method to delete session. Is this really so, could anyone help?
|
|
To delete session data, use the Session Component within a Controller, not a View.
Or:
While it's technically possible to delete session data in a view (it's just a PHP file after all), the CakePHP Framework was built with the MVC structure in mind. The "V" (for "view") should only be related to displaying the data provided by the Controller (retrieved from the Model). The Model deals with accessing the data/database, and the Controller does the application logic. So - the Session Component (components are for controllers) is given a method to delete session data, but the Session Helper (helpers are for views) is not. |
||||
|
To delete a session variable, you can use the following code (in a Controller).
You can destroy all session variables calling the following:
|
|||||
|