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;
+ AnswerB
+ Report