Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created May 23, 2011 19:26
Show Gist options
  • Select an option

  • Save eminetto/987360 to your computer and use it in GitHub Desktop.

Select an option

Save eminetto/987360 to your computer and use it in GitHub Desktop.
<?php
class IndexController extends Zend_Controller_Action {
   
    public function indexAction() {
        //cria uma variável a ser mostrada na view
        $this->view->msg = 'Hello!';
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment