/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php class IndexController extends Zend_Controller_Action { private $params; public function init(){ $this->params = $this->getRequest()->getParams(); } public function indexAction(){} public function dosomethingAction(){ } } ?>