/ Published in: Other
Expand |
Embed | Plain Text
<?php // This... $postData = $_POST; // ...is the same as... $postData = Mage::app()->getRequest()->getPost(); // You can access individual variables like... if (isset($postData['product_id'])) { echo $postData['product_id']; } ?>
You need to login to post a comment.
