Question:What is the best way to store session values in Magento? 

A myValue=’Hello world’; Mage::getSingleton( 'customer/session' )->setMyValue($myValue); 

B $myValue=’Hello world’; Mage::getSingleton( 'core/session' )->setMyValue($myValue); 

C $myValue=’Hello world’; Mage::getSingleton( 'core/variable' )->setMyValue($myValue); 

D $myValue=’Hello world’; $_SESSION[‘MyValue’] = $myValue; 

+ Answer
+ Report
Total Preview: 625

Copyright © 2025. Powered by Intellect Software Ltd