Reputation: 17
I used Like this But This is not Working $msg=array('id' =>'Account Sucessfully Deleted'); $this->_redirect('customer/account/dresshoheaccount',$msg); i want $msg Print in My Page,
Upvotes: 0
Views: 59
Reputation: 2500
you can easily do this as follows :
Mage::getSingleton('catalog/session')->addSuccess($this->__('Account Sucessfully Deleted'));
Please note that insert this line before you laid your layout.
you can call this is template as :
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
If not helping, try to add messages not to catalog/session
, but to core/session
.
Upvotes: 1