I am combining OpenCart and CakePHP Modules and I want to use session value of CakePHP in OpenCart session of customer ID.
$this->Session->write('customer_id',$id);//in cakephp
$_SESSION['customer_id'];//in open cart
Value of customer_id
comes correct but not shown in session of OpenCart, is there any method to do so?