开发者

Error in view file

开发者 https://www.devze.com 2023-03-03 17:25 出处:网络
I\'m new to zend framework.I\'m getting the following error when trying to view the page Fatal error: Using $this when not in object context i开发者_如何学Pythonn D:\\xampp\\htdocs\\neemjobs\\applica

I'm new to zend framework.I'm getting the following error when trying to view the page

Fatal error: Using $this when not in object context i开发者_如何学Pythonn D:\xampp\htdocs\neemjobs\application\views\scripts\register\index.phtml on line 1

class RegisterController extends Zend_Controller_Action
{

    public function init()
    {
        /* Initialize action controller here */
    }

    public function indexAction()
    {
        $this->view->pageTitle = "Zend_Form Example";
        $this->view->bodyCopy = "<p >Please fill out this form.</p>";

        $form = new forms_ContactForm();
        $this->view->form = $form;

    }


}

My View is

<?php echo $this->pageTitle ;?>
<?php echo $this->bodyCopy ;?>


This is totally correct (on my Zend Framework installation goes perfectly, I just don't understand "in which way" are you using the Form... but, anyway, it works, so the "bug" is not there...

0

精彩评论

暂无评论...
验证码 换一张
取 消