im re-factoring php on zend code and all the code is full of $_GET[\"this\"] and $_POST[\"that\"]. I have always used the more phpish $this->_
$_GET[\"this\"]
$_POST[\"that\"]
$this->_
$dataGet = $this->getRequest()->getParam('id',null); $valid = new Zend_Validate_Digits(); if( isset($dataGet) && $valid->isValid($dataGet) ){ // do some... } else{ // not set }