How to get post data variables after submition a form in magento

前端 未结 5 1603
暖寄归人
暖寄归人 2021-01-31 20:39

How do I get data of post variables ? Like if I post form with post method then I can get itt with $_REQUEST or with $_POST. How I can do this in mgento ?

5条回答
  •  无人共我
    2021-01-31 21:14

    Return array with params post/get

    Mage::app()->getRequest()->getParams();
    

    Return value by field name

    Mage::app()->getRequest()->getParam('field');
    

提交回复
热议问题