I have a php array defined in "layout" known as default.phtml and that array is some thing like this
$mydata['abc'] = array("A","A","A","A","A","A","A");
I can get the Layout using a custom defined function
$cls = new cass();
$layout = $cls->getLayout() ;
How do i access the same array "$mydata['abc']" in the Controller and view . Can Any body Please help me