1.

How To Write, Read And Delete The Session In Cakephp?

Answer»

$this->Session->write(‘BIRD.Color’, ‘BLACK’);
$black = $this->Session->READ(‘Bird.Color’);
$this->Session->delete(‘Bird’); 

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



Discussion

No Comment Found