Once you start doing some Magento coding, you may be faced with loads of errors if you try to use the $_GET['variable'] within functions or some views. So instead try using
1 | $this->getRequest()->getParam('variable'); |
Once you start doing some Magento coding, you may be faced with loads of errors if you try to use the $_GET['variable'] within functions or some views. So instead try using
1 | $this->getRequest()->getParam('variable'); |

