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

前端 未结 5 1499
暖寄归人
暖寄归人 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:00

    You can go through this way:

    replace 'ship-note' with your custom field.

    $delivery_instruction_note = Mage::app()->getRequest()->getParam('ship-note');
    

提交回复
热议问题