Interview Questions

How to write, read and delete the Session in cakephp?

CakePHP Interview Questions and Answers


(Continued from previous question...)

How to write, read and delete the Session in cakephp?

$this->Session->write(‘Bird.Color’, ‘Black’);
$black = $this->Session->read(‘Bird.Color’);
$this->Session->delete(‘Bird’);

(Continued on next question...)

Other Interview Questions