> class PayController extends ControllerBase{
        >       public $money;
        >       
        >       public function initialize(){
        >           parent::initialize();
        >       }
        >   
        >       public function checkContractAction(){
        >               $this->view->disable();
        >               $type = $this->request->getPost('type');
        >               $this->money = $this->request->getPost('money');
        >               // echo $this->money ;exit();
        >       }
        >      
        >       public function upayAction(){
        >              var_dump( $this->money) ;exit();
        >       }
        >       
        > }when I first pay/check then pay/upay $money are null