Hello,
i want to know, how do I take the value of the session which is the session sent by cake php, and here is a sample code i try :
* Code in CakePhp :
// Set Session in cakephp
$this->Session->write('ThisSession', 'This Content');
//Code above is set session with name/id "ThisSession" with value "This is Content"
i want to retrieve that session value in another php pages, outside of cakephp with this code
//php file : getvalue.php
session_start();
echo $_SESSION('ThisSession');
but i got nothing, can anyone help me about this solution, pleasee !


